Moved CPU Emulation Engine options to the Advanced tab

This commit is contained in:
Ethan Roseman
2019-10-08 14:48:43 -04:00
parent a1405f70a2
commit 1ce566f9fd
4 changed files with 65 additions and 56 deletions

View File

@ -4,13 +4,21 @@
#pragma once
#include <vector>
#include <QWidget>
class QCheckBox;
class QLabel;
class QRadioButton;
class QSlider;
class QDateTimeEdit;
namespace Core
{
enum class State;
}
class AdvancedPane final : public QWidget
{
Q_OBJECT
@ -21,6 +29,7 @@ private:
void CreateLayout();
void ConnectLayout();
void Update();
void OnEmulationStateChanged(Core::State state);
QCheckBox* m_cpu_clock_override_checkbox;
QSlider* m_cpu_clock_override_slider;
@ -29,4 +38,6 @@ private:
QCheckBox* m_custom_rtc_checkbox;
QDateTimeEdit* m_custom_rtc_datetime;
std::vector<QRadioButton*> m_cpu_cores;
};