Qt: Add options for CPU overclocking

This commit is contained in:
Connor McLaughlin
2020-09-30 00:29:47 +10:00
parent 27697d0508
commit 61a66ed908
3 changed files with 140 additions and 2 deletions

View File

@ -15,7 +15,14 @@ public:
explicit ConsoleSettingsWidget(QtHostInterface* host_interface, QWidget* parent, SettingsDialog* dialog);
~ConsoleSettingsWidget();
private Q_SLOTS:
void onEnableCPUClockSpeedControlChecked(int state);
void onCPUClockSpeedValueChanged(int value);
void updateCPUClockSpeedLabel();
private:
void calculateCPUClockValue();
Ui::ConsoleSettingsWidget m_ui;
QtHostInterface* m_host_interface;