[RSP] Use InterpreterCPU if x64
Recompiler doesn't work in x64.
This commit is contained in:
parent
47d55f3028
commit
a50f21b175
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue