mirror of
https://github.com/kanjitalk755/macemu.git
synced 2024-11-20 00:31:28 +00:00
Handle "keyboardtype" prefs item from Basilisk II
This commit is contained in:
parent
261efeaa9e
commit
5f52e637b1
@ -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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user