diff options
author | fearlessTobi <thm.frey@gmail.com> | 2019-07-04 14:48:08 +0200 |
---|---|---|
committer | fearlessTobi <thm.frey@gmail.com> | 2019-07-04 14:48:08 +0200 |
commit | 447bdac298c8a4d71b95996ba44efa9a5fd39e84 (patch) | |
tree | 7958491f46776eedc810bb65d76ca1a31232e7d3 /src/core/settings.cpp | |
parent | 58032e0085af7fa15e0cf3ac3ee151794cd053c0 (diff) |
yuzu: Remove CPU Jit setting from the UI
A normal user shouldn't change this, as it will slow down the emulation and can lead to bugs or crashes. The renaming is done in order to prevent users from leaving this on without a way to turn it off from the UI.
Diffstat (limited to 'src/core/settings.cpp')
-rw-r--r-- | src/core/settings.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/settings.cpp b/src/core/settings.cpp index 6d32ebea3..63aa59690 100644 --- a/src/core/settings.cpp +++ b/src/core/settings.cpp @@ -85,7 +85,7 @@ 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_UseCpuJit", Settings::values.use_cpu_jit); + 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); |