diff options
Diffstat (limited to 'src')
| -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 = | |||
| 27 | pad_sright = | 27 | pad_sright = |
| 28 | 28 | ||
| 29 | [Core] | 29 | [Core] |
| 30 | cpu_core = ## 0: Interpreter (default), 1: FastInterpreter (experimental) | 30 | cpu_core = ## 0: Interpreter (default), 1: OldInterpreter (may work better, soon to be deprecated) |
| 31 | gpu_refresh_rate = ## 30 (default) | 31 | gpu_refresh_rate = ## 30 (default) |
| 32 | frame_skip = ## 0: No frameskip (default), 1 : 2x frameskip, 2 : 4x frameskip, etc. | 32 | frame_skip = ## 0: No frameskip (default), 1 : 2x frameskip, 2 : 4x frameskip, etc. |
| 33 | 33 | ||
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() { | |||
| 53 | g_sys_core = new ARM_Interpreter(); | 53 | g_sys_core = new ARM_Interpreter(); |
| 54 | 54 | ||
| 55 | switch (Settings::values.cpu_core) { | 55 | switch (Settings::values.cpu_core) { |
| 56 | case CPU_FastInterpreter: | 56 | case CPU_Interpreter: |
| 57 | g_app_core = new ARM_DynCom(); | 57 | g_app_core = new ARM_DynCom(); |
| 58 | break; | 58 | break; |
| 59 | case CPU_Interpreter: | 59 | case CPU_OldInterpreter: |
| 60 | default: | 60 | default: |
| 61 | g_app_core = new ARM_Interpreter(); | 61 | g_app_core = new ARM_Interpreter(); |
| 62 | break; | 62 | 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 { | |||
| 13 | 13 | ||
| 14 | enum CPUCore { | 14 | enum CPUCore { |
| 15 | CPU_Interpreter, | 15 | CPU_Interpreter, |
| 16 | CPU_FastInterpreter | 16 | CPU_OldInterpreter, |
| 17 | }; | 17 | }; |
| 18 | 18 | ||
| 19 | extern ARM_Interface* g_app_core; ///< ARM11 application core | 19 | extern ARM_Interface* g_app_core; ///< ARM11 application core |