"jitlazyflush" prefs item type was changed to bool some time ago, this fixes

this and enables the GUI to set it to true by default, as expected.
This commit is contained in:
gbeauche 2005-11-22 06:48:55 +00:00
parent 5fbaa95fbc
commit dd2b492086

View File

@ -97,7 +97,7 @@ void AddPrefsDefaults(void)
PrefsAddBool("jitfpu", true);
PrefsAddBool("jitdebug", false);
PrefsAddInt32("jitcachesize", 8192);
PrefsAddInt32("jitlazyflush", true);
PrefsAddBool("jitlazyflush", true);
PrefsAddBool("jitinline", true);
#else
PrefsAddBool("jit", false);