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.5 by cebix, 2004-01-12T15:37:18Z

# 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 +        {"keyboardtype", TYPE_INT32, false, "hardware keyboard type"},
58          {NULL, TYPE_END, false, NULL} // End of list
59   };
60  
# Line 72 | Line 74 | void AddPrefsDefaults(void)
74          PrefsAddBool("nonet", false);
75          PrefsAddBool("nosound", false);
76          PrefsAddBool("nogui", false);
77 +        PrefsAddBool("noclipconversion", false);
78          PrefsAddBool("ignoresegv", true);
79  
80   #if USE_JIT
# Line 80 | Line 83 | void AddPrefsDefaults(void)
83   #else
84          PrefsAddBool("jit", false);
85   #endif
86 +
87 +    PrefsAddInt32("keyboardtype", 5);
88   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines