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 by cebix, 2002-02-04T16:58:13Z vs.
Revision 1.6 by gbeauche, 2004-06-03T21:52:54Z

# Line 1 | Line 1
1   /*
2   *  prefs_items.cpp - Common preferences items
3   *
4 < *  SheepShaver (C) 1997-2002 Christian Bauer and Marc Hellwig
4 > *  SheepShaver (C) 1997-2004 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
# 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 +        {"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  
# Line 71 | Line 75 | void AddPrefsDefaults(void)
75          PrefsAddBool("nonet", false);
76          PrefsAddBool("nosound", false);
77          PrefsAddBool("nogui", false);
78 +        PrefsAddBool("noclipconversion", false);
79          PrefsAddBool("ignoresegv", true);
80 +
81 + #if USE_JIT
82 +        // JIT compiler specific options
83 +        PrefsAddBool("jit", true);
84 + #else
85 +        PrefsAddBool("jit", false);
86 + #endif
87 +        PrefsAddBool("jit68k", false);
88 +
89 +    PrefsAddInt32("keyboardtype", 5);
90   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines