[Project64] Use CPU_Interpreter if x64

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

View File

@ -150,7 +150,11 @@ void CSettings::AddHowToHandleSetting(const char * BaseDirectory)
#ifdef _DEBUG
AddHandler(Rdb_CpuType, new CSettingTypeRDBCpuType("CPU Type", CPU_SyncCores));
#else
#ifndef _M_X64
AddHandler(Rdb_CpuType, new CSettingTypeRDBCpuType("CPU Type", CPU_Recompiler));
#else
AddHandler(Rdb_CpuType, new CSettingTypeRDBCpuType("CPU Type", CPU_Interpreter));
#endif
#endif
AddHandler(Rdb_RDRamSize, new CSettingTypeRDBRDRamSize("RDRAM Size", Default_RDRamSize));
AddHandler(Rdb_CounterFactor, new CSettingTypeRomDatabase("Counter Factor", Default_CounterFactor));