1 |
|
/* |
2 |
|
* prefs_items.cpp - Common preferences items |
3 |
|
* |
4 |
< |
* SheepShaver (C) 1997-2002 Christian Bauer and Marc Hellwig |
4 |
> |
* SheepShaver (C) 1997-2005 Christian Bauer and Marc Hellwig |
5 |
|
* |
6 |
|
* This program is free software; you can redistribute it and/or modify |
7 |
|
* it under the terms of the GNU General Public License as published by |
54 |
|
{"noclipconversion", TYPE_BOOLEAN, false, "don't convert clipboard contents"}, |
55 |
|
{"ignoresegv", TYPE_BOOLEAN, false, "ignore illegal memory accesses"}, |
56 |
|
{"jit", TYPE_BOOLEAN, false, "enable JIT compiler"}, |
57 |
+ |
{"jit68k", TYPE_BOOLEAN, false, "enable 68k DR emulator"}, |
58 |
+ |
{"keyboardtype", TYPE_INT32, false, "hardware keyboard type"}, |
59 |
|
{NULL, TYPE_END, false, NULL} // End of list |
60 |
|
}; |
61 |
|
|
84 |
|
#else |
85 |
|
PrefsAddBool("jit", false); |
86 |
|
#endif |
87 |
+ |
PrefsAddBool("jit68k", false); |
88 |
+ |
|
89 |
+ |
PrefsAddInt32("keyboardtype", 5); |
90 |
|
} |