[RSP] Use InterpreterCPU if x64

Recompiler doesn't work in x64.
This commit is contained in:
Frank-74 2019-01-14 02:01:17 +00:00
parent 47d55f3028
commit a50f21b175
1 changed files with 4 additions and 0 deletions

View File

@ -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;