Merge branch 'master' of https://github.com/project64/project64
This commit is contained in:
commit
b3ed03c2b0
|
@ -118,10 +118,14 @@ void CSettings::AddHowToHandleSetting(const char * BaseDirectory)
|
|||
AddHandler(Setting_AutoZipInstantSave, new CSettingTypeApplication("Settings", "Auto Zip Saves", (uint32_t)true));
|
||||
AddHandler(Setting_EraseGameDefaults, new CSettingTypeApplication("Settings", "Erase on default", (uint32_t)true));
|
||||
AddHandler(Setting_CheckEmuRunning, new CSettingTypeApplication("Settings", "Check Running", (uint32_t)true));
|
||||
#ifndef _M_X64
|
||||
AddHandler(Setting_ForceInterpreterCPU, new CSettingTypeApplication("Settings", "Force Interpreter CPU", false));
|
||||
#else
|
||||
AddHandler(Setting_ForceInterpreterCPU, new CSettingTypeApplication("Settings", "Force Interpreter CPU", true));
|
||||
#endif
|
||||
AddHandler(Setting_FixedRdramAddress, new CSettingTypeApplication("Settings", "Fixed Rdram Address", (uint32_t)0));
|
||||
AddHandler(Setting_Enhancement, new CSettingTypeApplication("Settings", "Enable Enhancement", (uint32_t)false));
|
||||
|
||||
AddHandler(Setting_Enhancement, new CSettingTypeApplication("Settings", "Enable Enhancement", (uint32_t)false));
|
||||
|
||||
AddHandler(Setting_RememberCheats, new CSettingTypeApplication("Settings", "Remember Cheats", (uint32_t)false));
|
||||
#ifdef ANDROID
|
||||
AddHandler(Setting_UniqueSaveDir, new CSettingTypeTempBool(true));
|
||||
|
|
|
@ -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