default jit to disabled, i think
This commit is contained in:
parent
532209dd61
commit
fe6b99a7a0
|
@ -526,7 +526,9 @@ extern struct TCommonSettings {
|
||||||
for(int x=0;x<5;x++)
|
for(int x=0;x<5;x++)
|
||||||
dispLayers[g][x]=true;
|
dispLayers[g][x]=true;
|
||||||
#ifdef HAVE_JIT
|
#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
|
#else
|
||||||
use_jit = false;
|
use_jit = false;
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -2966,7 +2966,9 @@ int _main()
|
||||||
GetPrivateProfileString("Firmware", "FirmwareFile", "firmware.bin", CommonSettings.Firmware, 256, IniName);
|
GetPrivateProfileString("Firmware", "FirmwareFile", "firmware.bin", CommonSettings.Firmware, 256, IniName);
|
||||||
CommonSettings.BootFromFirmware = GetPrivateProfileBool("Firmware", "BootFromFirmware", false, 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));
|
video.setfilter(GetPrivateProfileInt("Video", "Filter", video.NONE, IniName));
|
||||||
FilterUpdate(MainWindow->getHWnd(),false);
|
FilterUpdate(MainWindow->getHWnd(),false);
|
||||||
|
|
Loading…
Reference in New Issue