mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 12:19:12 +00:00
DolphinQt/AdvancedPane: Use ConfigBool for MMU, Pause on Panic, and Write-Back Cache.
This commit is contained in:
parent
2537f4db91
commit
ccee66dc80
2 changed files with 20 additions and 29 deletions
|
@ -7,6 +7,7 @@
|
|||
|
||||
#include <QWidget>
|
||||
|
||||
class ConfigBool;
|
||||
class QCheckBox;
|
||||
class QComboBox;
|
||||
class QLabel;
|
||||
|
@ -31,9 +32,9 @@ private:
|
|||
void Update();
|
||||
|
||||
QComboBox* m_cpu_emulation_engine_combobox;
|
||||
QCheckBox* m_enable_mmu_checkbox;
|
||||
QCheckBox* m_pause_on_panic_checkbox;
|
||||
QCheckBox* m_accurate_cpu_cache_checkbox;
|
||||
ConfigBool* m_enable_mmu_checkbox;
|
||||
ConfigBool* m_pause_on_panic_checkbox;
|
||||
ConfigBool* m_accurate_cpu_cache_checkbox;
|
||||
QCheckBox* m_cpu_clock_override_checkbox;
|
||||
QSlider* m_cpu_clock_override_slider;
|
||||
QLabel* m_cpu_clock_override_slider_label;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue