summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
Diffstat (limited to 'src/core')
-rw-r--r--src/core/core.cpp4
-rw-r--r--src/core/core.h2
2 files changed, 3 insertions, 3 deletions
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
14enum CPUCore { 14enum CPUCore {
15 CPU_Interpreter, 15 CPU_Interpreter,
16 CPU_FastInterpreter 16 CPU_OldInterpreter,
17}; 17};
18 18
19extern ARM_Interface* g_app_core; ///< ARM11 application core 19extern ARM_Interface* g_app_core; ///< ARM11 application core