diff options
author | Lioncash <mathew1800@gmail.com> | 2019-07-11 05:52:38 -0400 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2019-07-11 05:59:13 -0400 |
commit | 8fc806e88acb69db6cfa84ad7252a4530b67c55f (patch) | |
tree | 19eeddc1c1e8b3e3a5d031426c517a5f48dcc03a /src/core/settings.cpp | |
parent | 70624e1c1d16c2ff3b786ec56ec550f699065741 (diff) |
yuzu: Remove setting for using Unicorn
The JIT is mature enough that this setting can be removed, falling back
to Unicorn only on unsupported architectures. Any missing features from
Unicorn (of which there are extremely few), are mostly
developer-oriented, which most users don't care about.
Features should be coordinated with the JIT, not the interpreter,
anyhow.
Diffstat (limited to 'src/core/settings.cpp')
-rw-r--r-- | src/core/settings.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/core/settings.cpp b/src/core/settings.cpp index 63aa59690..0dd1632ac 100644 --- a/src/core/settings.cpp +++ b/src/core/settings.cpp @@ -85,7 +85,6 @@ void LogSettings() { LogSetting("System_RngSeed", Settings::values.rng_seed.value_or(0)); LogSetting("System_CurrentUser", Settings::values.current_user); LogSetting("System_LanguageIndex", Settings::values.language_index); - LogSetting("Core_CpuJitEnabled", Settings::values.cpu_jit_enabled); LogSetting("Core_UseMultiCore", Settings::values.use_multi_core); LogSetting("Renderer_UseResolutionFactor", Settings::values.resolution_factor); LogSetting("Renderer_UseFrameLimit", Settings::values.use_frame_limit); |