summaryrefslogtreecommitdiff
path: root/Source
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2014-10-13 02:01:14 -0400
committerLioncash <mathew1800@gmail.com>2014-10-13 02:01:14 -0400
commit81e2cf7490e29e259d21f1479becd7f1441166de (patch)
treea4658becf6a74376b9d561f6cecf57e718ca4c77 /Source
parent9551650c42d8e256043a5783ba3b7b3aa18e350d (diff)
parent0a0183ee44222f2747543e7841002e0acc6d84b2 (diff)
Merge pull request #1271 from Sonicadvance1/AArch64-JIT-UI
Add AArch64 JIT recompiler to wxWidgets UI.
Diffstat (limited to 'Source')
-rw-r--r--Source/Core/DolphinWX/ConfigMain.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/Source/Core/DolphinWX/ConfigMain.cpp b/Source/Core/DolphinWX/ConfigMain.cpp
index 66e0501a4a..ac68bd63dd 100644
--- a/Source/Core/DolphinWX/ConfigMain.cpp
+++ b/Source/Core/DolphinWX/ConfigMain.cpp
@@ -62,12 +62,13 @@ struct CPUCore
};
const CPUCore CPUCores[] = {
{0, wxTRANSLATE("Interpreter (VERY slow)")},
-#ifdef _M_ARM
- {3, wxTRANSLATE("Arm JIT (experimental)")},
- {4, wxTRANSLATE("Arm JITIL (experimental)")},
-#else
+#ifdef _M_X86_64
{1, wxTRANSLATE("JIT Recompiler (recommended)")},
{2, wxTRANSLATE("JITIL Recompiler (slower, experimental)")},
+#elif defined(_M_ARM_32)
+ {3, wxTRANSLATE("Arm JIT (experimental)")},
+#elif defined(_M_ARM_64)
+ {4, wxTRANSLATE("Arm64 JIT (experimental)")},
#endif
};