From a50f21b175eb8d5adc03dbff54636d735175f981 Mon Sep 17 00:00:00 2001 From: Frank-74 Date: Mon, 14 Jan 2019 02:01:17 +0000 Subject: [PATCH] [RSP] Use InterpreterCPU if x64 Recompiler doesn't work in x64. --- Source/RSP/Main.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Source/RSP/Main.cpp b/Source/RSP/Main.cpp index 1557eba80..b007bb46a 100644 --- a/Source/RSP/Main.cpp +++ b/Source/RSP/Main.cpp @@ -766,7 +766,11 @@ EXPORT void EnableDebugging(Boolean Enabled) EXPORT void PluginLoaded(void) { BreakOnStart = false; +#ifndef _M_X64 CPUCore = RecompilerCPU; +#else + CPUCore = InterpreterCPU; +#endif LogRDP = FALSE; LogX86Code = FALSE; Profiling = FALSE;