1 |
|
/* |
2 |
|
* prefs_items.cpp - Common preferences items |
3 |
|
* |
4 |
< |
* SheepShaver (C) 1997-2005 Christian Bauer and Marc Hellwig |
4 |
> |
* SheepShaver (C) 1997-2008 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 |
|
{"nogui", TYPE_BOOLEAN, false, "disable GUI"}, |
55 |
|
{"noclipconversion", TYPE_BOOLEAN, false, "don't convert clipboard contents"}, |
56 |
|
{"ignoresegv", TYPE_BOOLEAN, false, "ignore illegal memory accesses"}, |
57 |
+ |
{"ignoreillegal", TYPE_BOOLEAN, false, "ignore illegal instructions"}, |
58 |
|
{"jit", TYPE_BOOLEAN, false, "enable JIT compiler"}, |
59 |
|
{"jit68k", TYPE_BOOLEAN, false, "enable 68k DR emulator"}, |
60 |
|
{"keyboardtype", TYPE_INT32, false, "hardware keyboard type"}, |
67 |
|
|
68 |
|
void AddPrefsDefaults(void) |
69 |
|
{ |
70 |
+ |
#ifndef PREFS_EDITOR |
71 |
|
SysAddSerialPrefs(); |
72 |
+ |
#endif |
73 |
|
PrefsAddInt32("bootdriver", 0); |
74 |
|
PrefsAddInt32("bootdrive", 0); |
75 |
|
PrefsAddInt32("ramsize", 16 * 1024 * 1024); |
81 |
|
PrefsAddBool("nogui", false); |
82 |
|
PrefsAddBool("noclipconversion", false); |
83 |
|
PrefsAddBool("ignoresegv", false); |
84 |
+ |
PrefsAddBool("ignoreillegal", false); |
85 |
|
|
86 |
|
#if USE_JIT |
87 |
|
// JIT compiler specific options |
91 |
|
#endif |
92 |
|
PrefsAddBool("jit68k", false); |
93 |
|
|
94 |
< |
PrefsAddInt32("keyboardtype", 5); |
94 |
> |
PrefsAddInt32("keyboardtype", 5); |
95 |
|
} |