mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 06:39:46 -06:00
Moved CPU Emulation Engine options to the Advanced tab
This commit is contained in:
@ -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;
|
||||
};
|
||||
|
Reference in New Issue
Block a user