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.2 by gbeauche, 2003-12-03T10:52:47Z vs.
Revision 1.8 by gbeauche, 2005-03-27T22:08:33Z

# 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-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
# Line 37 | Line 37 | prefs_desc common_prefs_items[] = {
37          {"scsi4", TYPE_STRING, false,       "SCSI target for Mac SCSI ID 4"},
38          {"scsi5", TYPE_STRING, false,       "SCSI target for Mac SCSI ID 5"},
39          {"scsi6", TYPE_STRING, false,       "SCSI target for Mac SCSI ID 6"},
40 +        {"screen", TYPE_STRING, false,      "video mode"},
41          {"windowmodes", TYPE_INT32, false,  "bitmap of allowed window video modes"},
42          {"screenmodes", TYPE_INT32, false,  "bitmap of allowed fullscreen video modes"},
43          {"seriala", TYPE_STRING, false,     "device name of Mac serial port A"},
# Line 51 | Line 52 | prefs_desc common_prefs_items[] = {
52          {"nonet", TYPE_BOOLEAN, false,      "don't use Ethernet"},
53          {"nosound", TYPE_BOOLEAN, false,    "don't enable sound output"},
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          {"jit", TYPE_BOOLEAN, false,        "enable JIT compiler"},
58 +        {"jit68k", TYPE_BOOLEAN, false,     "enable 68k DR emulator"},
59 +        {"keyboardtype", TYPE_INT32, false, "hardware keyboard type"},
60          {NULL, TYPE_END, false, NULL} // End of list
61   };
62  
# Line 72 | Line 76 | void AddPrefsDefaults(void)
76          PrefsAddBool("nonet", false);
77          PrefsAddBool("nosound", false);
78          PrefsAddBool("nogui", false);
79 <        PrefsAddBool("ignoresegv", true);
79 >        PrefsAddBool("noclipconversion", false);
80 >        PrefsAddBool("ignoresegv", false);
81  
82   #if USE_JIT
83          // JIT compiler specific options
# Line 80 | Line 85 | void AddPrefsDefaults(void)
85   #else
86          PrefsAddBool("jit", false);
87   #endif
88 +        PrefsAddBool("jit68k", false);
89 +
90 +    PrefsAddInt32("keyboardtype", 5);
91   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines