diff options
author | bunnei <bunneidev@gmail.com> | 2018-03-27 10:22:08 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-27 10:22:08 -0400 |
commit | a5e9745380bf9e247d34c42009cd9eb66f4e97a8 (patch) | |
tree | 3c31fcb4375793542daff053665be555c2dfaa7f /src/core/settings.h | |
parent | 1a28f4fa8c94ad43d757eeb7fc137024f356db87 (diff) | |
parent | 212a6ab937b05014784187782219a60600573503 (diff) |
Merge pull request #284 from bunnei/docked-config
Add config for "Docked" mode and various settings cleanup
Diffstat (limited to 'src/core/settings.h')
-rw-r--r-- | src/core/settings.h | 10 |
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 = {{ }}; } // namespace NativeAnalog -enum class CpuCore { - Unicorn, - Dynarmic, -}; - struct Values { + // System + bool use_docked_mode; + // Controls std::array<std::string, NativeButton::NumButtons> buttons; std::array<std::string, NativeAnalog::NumAnalogs> analogs; @@ -118,7 +116,7 @@ struct Values { std::string touch_device; // Core - CpuCore cpu_core; + bool use_cpu_jit; // Data Storage bool use_virtual_sd; |