summaryrefslogtreecommitdiff
path: root/src/core/settings.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/settings.h')
-rw-r--r--src/core/settings.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/core/settings.h b/src/core/settings.h
index 6f8cd0f03..2c94caab7 100644
--- a/src/core/settings.h
+++ b/src/core/settings.h
@@ -105,12 +105,10 @@ static const std::array<const char*, NumAnalogs> mapping = {{
105}}; 105}};
106} // namespace NativeAnalog 106} // namespace NativeAnalog
107 107
108enum class CpuCore {
109 Unicorn,
110 Dynarmic,
111};
112
113struct Values { 108struct Values {
109 // System
110 bool use_docked_mode;
111
114 // Controls 112 // Controls
115 std::array<std::string, NativeButton::NumButtons> buttons; 113 std::array<std::string, NativeButton::NumButtons> buttons;
116 std::array<std::string, NativeAnalog::NumAnalogs> analogs; 114 std::array<std::string, NativeAnalog::NumAnalogs> analogs;
@@ -118,7 +116,7 @@ struct Values {
118 std::string touch_device; 116 std::string touch_device;
119 117
120 // Core 118 // Core
121 CpuCore cpu_core; 119 bool use_cpu_jit;
122 120
123 // Data Storage 121 // Data Storage
124 bool use_virtual_sd; 122 bool use_virtual_sd;