From 0a0183ee44222f2747543e7841002e0acc6d84b2 Mon Sep 17 00:00:00 2001 From: Ryan Houdek Date: Sun, 12 Oct 2014 22:49:07 -0500 Subject: [PATCH] Add AArch64 JIT recompiler to wxWidgets UI. This also fixes an issue where it would show the ARMv7 JIT recompiler on AArch64, also the issue of showing the now non-existant ARM JITIL. Also fixes an issue where it would show the x86 JIT recompilers on a non ARM platform. --- Source/Core/DolphinWX/ConfigMain.cpp | 9 +++++---- 1 file 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 };