[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)
|
EXPORT void PluginLoaded(void)
|
||||||
{
|
{
|
||||||
BreakOnStart = false;
|
BreakOnStart = false;
|
||||||
|
#ifndef _M_X64
|
||||||
CPUCore = RecompilerCPU;
|
CPUCore = RecompilerCPU;
|
||||||
|
#else
|
||||||
|
CPUCore = InterpreterCPU;
|
||||||
|
#endif
|
||||||
LogRDP = FALSE;
|
LogRDP = FALSE;
|
||||||
LogX86Code = FALSE;
|
LogX86Code = FALSE;
|
||||||
Profiling = FALSE;
|
Profiling = FALSE;
|
||||||
|
|
Loading…
Reference in New Issue