summaryrefslogtreecommitdiffstats
path: root/src/core/settings.h
diff options
context:
space:
mode:
authorMerryMage <MerryMage@users.noreply.github.com>2018-01-12 17:06:30 +0100
committerbunnei <bunneidev@gmail.com>2018-01-12 23:48:52 +0100
commitb628192bf27c871af3ecbf8982b4a13a78fd70c4 (patch)
treea5d66996675378584d2324c48c8e3ef4c8f33a74 /src/core/settings.h
parentarm_dynarmic: Implement core (diff)
downloadyuzu-b628192bf27c871af3ecbf8982b4a13a78fd70c4.tar
yuzu-b628192bf27c871af3ecbf8982b4a13a78fd70c4.tar.gz
yuzu-b628192bf27c871af3ecbf8982b4a13a78fd70c4.tar.bz2
yuzu-b628192bf27c871af3ecbf8982b4a13a78fd70c4.tar.lz
yuzu-b628192bf27c871af3ecbf8982b4a13a78fd70c4.tar.xz
yuzu-b628192bf27c871af3ecbf8982b4a13a78fd70c4.tar.zst
yuzu-b628192bf27c871af3ecbf8982b4a13a78fd70c4.zip
Diffstat (limited to '')
-rw-r--r--src/core/settings.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/core/settings.h b/src/core/settings.h
index 912b2c885..ebf072cff 100644
--- a/src/core/settings.h
+++ b/src/core/settings.h
@@ -72,6 +72,11 @@ static const std::array<const char*, NumAnalogs> mapping = {{
}};
} // namespace NativeAnalog
+enum class CpuCore {
+ Unicorn,
+ Dynarmic,
+};
+
struct Values {
// CheckNew3DS
bool is_new_3ds;
@@ -83,7 +88,7 @@ struct Values {
std::string touch_device;
// Core
- bool use_cpu_jit;
+ CpuCore cpu_core;
// Data Storage
bool use_virtual_sd;