default jit to disabled, i think

This commit is contained in:
zeromus 2012-09-06 20:58:00 +00:00
parent 532209dd61
commit fe6b99a7a0
2 changed files with 6 additions and 2 deletions

View File

@ -526,7 +526,9 @@ extern struct TCommonSettings {
for(int x=0;x<5;x++)
dispLayers[g][x]=true;
#ifdef HAVE_JIT
use_jit = true;
//zero 06-sep-2012 - shouldnt be defaulting this to true for now, since the jit is buggy.
//id rather have people discover a bonus speedhack than discover new bugs in a new version
use_jit = false;
#else
use_jit = false;
#endif

View File

@ -2966,7 +2966,9 @@ int _main()
GetPrivateProfileString("Firmware", "FirmwareFile", "firmware.bin", CommonSettings.Firmware, 256, IniName);
CommonSettings.BootFromFirmware = GetPrivateProfileBool("Firmware", "BootFromFirmware", false, IniName);
CommonSettings.use_jit = GetPrivateProfileBool("Emulation", "CPUmode", true, IniName);
//zero 06-sep-2012 - shouldnt be defaulting this to true for now, since the jit is buggy.
//id rather have people discover a bonus speedhack than discover new bugs in a new version
CommonSettings.use_jit = GetPrivateProfileBool("Emulation", "CPUmode", false, IniName);
video.setfilter(GetPrivateProfileInt("Video", "Filter", video.NONE, IniName));
FilterUpdate(MainWindow->getHWnd(),false);