diff options
author | bunnei <bunneidev@gmail.com> | 2015-01-03 04:33:53 +0100 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2015-01-03 04:33:53 +0100 |
commit | 853b46c68165464c6acdf5f27846ee538774ce75 (patch) | |
tree | 81c12bc8e1a1c33805d3903dcab0c99fb2be09d1 | |
parent | Merge pull request #381 from Subv/savedatacheck (diff) | |
download | yuzu-853b46c68165464c6acdf5f27846ee538774ce75.tar yuzu-853b46c68165464c6acdf5f27846ee538774ce75.tar.gz yuzu-853b46c68165464c6acdf5f27846ee538774ce75.tar.bz2 yuzu-853b46c68165464c6acdf5f27846ee538774ce75.tar.lz yuzu-853b46c68165464c6acdf5f27846ee538774ce75.tar.xz yuzu-853b46c68165464c6acdf5f27846ee538774ce75.tar.zst yuzu-853b46c68165464c6acdf5f27846ee538774ce75.zip |
Diffstat (limited to '')
-rw-r--r-- | src/citra/default_ini.h | 2 | ||||
-rw-r--r-- | src/core/core.cpp | 4 | ||||
-rw-r--r-- | src/core/core.h | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/src/citra/default_ini.h b/src/citra/default_ini.h index f41020f7b..ebe2e9767 100644 --- a/src/citra/default_ini.h +++ b/src/citra/default_ini.h @@ -27,7 +27,7 @@ pad_sleft = pad_sright = [Core] -cpu_core = ## 0: Interpreter (default), 1: FastInterpreter (experimental) +cpu_core = ## 0: Interpreter (default), 1: OldInterpreter (may work better, soon to be deprecated) gpu_refresh_rate = ## 30 (default) frame_skip = ## 0: No frameskip (default), 1 : 2x frameskip, 2 : 4x frameskip, etc. diff --git a/src/core/core.cpp b/src/core/core.cpp index 22213d647..8ac4481cc 100644 --- a/src/core/core.cpp +++ b/src/core/core.cpp @@ -53,10 +53,10 @@ int Init() { g_sys_core = new ARM_Interpreter(); switch (Settings::values.cpu_core) { - case CPU_FastInterpreter: + case CPU_Interpreter: g_app_core = new ARM_DynCom(); break; - case CPU_Interpreter: + case CPU_OldInterpreter: default: g_app_core = new ARM_Interpreter(); break; diff --git a/src/core/core.h b/src/core/core.h index 05dbe0ae5..ecd58a73a 100644 --- a/src/core/core.h +++ b/src/core/core.h @@ -13,7 +13,7 @@ namespace Core { enum CPUCore { CPU_Interpreter, - CPU_FastInterpreter + CPU_OldInterpreter, }; extern ARM_Interface* g_app_core; ///< ARM11 application core |