--- SheepShaver/src/prefs_items.cpp 2003/12/31 11:37:25 1.3 +++ SheepShaver/src/prefs_items.cpp 2004/01/06 15:03:16 1.4 @@ -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"}, + {"keyboardtype", TYPE_INT32, false, "hardware keyboard type"}, {NULL, TYPE_END, false, NULL} // End of list }; @@ -82,4 +83,6 @@ void AddPrefsDefaults(void) #else PrefsAddBool("jit", false); #endif + + PrefsAddInt32("keyboardtype", 5); }