--- SheepShaver/src/prefs_items.cpp 2004/01/12 15:37:18 1.5 +++ SheepShaver/src/prefs_items.cpp 2004/06/03 21:52:54 1.6 @@ -54,6 +54,7 @@ prefs_desc common_prefs_items[] = { {"noclipconversion", TYPE_BOOLEAN, false, "don't convert clipboard contents"}, {"ignoresegv", TYPE_BOOLEAN, false, "ignore illegal memory accesses"}, {"jit", TYPE_BOOLEAN, false, "enable JIT compiler"}, + {"jit68k", TYPE_BOOLEAN, false, "enable 68k DR emulator"}, {"keyboardtype", TYPE_INT32, false, "hardware keyboard type"}, {NULL, TYPE_END, false, NULL} // End of list }; @@ -83,6 +84,7 @@ void AddPrefsDefaults(void) #else PrefsAddBool("jit", false); #endif + PrefsAddBool("jit68k", false); PrefsAddInt32("keyboardtype", 5); }