ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/SheepShaver/src/prefs_items.cpp
(Generate patch)

Comparing SheepShaver/src/prefs_items.cpp (file contents):
Revision 1.1.1.1 by cebix, 2002-02-04T16:58:13Z vs.
Revision 1.3 by gbeauche, 2003-12-31T11:37:25Z

# Line 51 | Line 51 | prefs_desc common_prefs_items[] = {
51          {"nonet", TYPE_BOOLEAN, false,      "don't use Ethernet"},
52          {"nosound", TYPE_BOOLEAN, false,    "don't enable sound output"},
53          {"nogui", TYPE_BOOLEAN, false,      "disable GUI"},
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          {NULL, TYPE_END, false, NULL} // End of list
58   };
59  
# Line 71 | Line 73 | void AddPrefsDefaults(void)
73          PrefsAddBool("nonet", false);
74          PrefsAddBool("nosound", false);
75          PrefsAddBool("nogui", false);
76 +        PrefsAddBool("noclipconversion", false);
77          PrefsAddBool("ignoresegv", true);
78 +
79 + #if USE_JIT
80 +        // JIT compiler specific options
81 +        PrefsAddBool("jit", true);
82 + #else
83 +        PrefsAddBool("jit", false);
84 + #endif
85   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines