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

Comparing SheepShaver/src/Unix/prefs_unix.cpp (file contents):
Revision 1.1 by cebix, 2002-02-04T16:58:13Z vs.
Revision 1.6 by gbeauche, 2004-05-09T17:44:17Z

# Line 1 | Line 1
1   /*
2   *  prefs_unix.cpp - Preferences handling, Unix specific things
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 29 | Line 29
29  
30   // Platform-specific preferences items
31   prefs_desc platform_prefs_items[] = {
32 <        {"ether", TYPE_STRING, false, "device name of Mac ethernet adapter"},
32 >        {"ether", TYPE_STRING, false,          "device name of Mac ethernet adapter"},
33 >        {"etherconfig", TYPE_STRING, false,    "path of network config script"},
34 >        {"keycodes", TYPE_BOOLEAN, false,      "use keycodes rather than keysyms to decode keyboard"},
35 >        {"keycodefile", TYPE_STRING, false,    "path of keycode translation file"},
36 >        {"mousewheelmode", TYPE_INT32, false,  "mouse wheel support mode (0=page up/down, 1=cursor up/down)"},
37 >        {"mousewheellines", TYPE_INT32, false, "number of lines to scroll in mouse wheel mode 1"},
38 >        {"dsp", TYPE_STRING, false,            "audio output (dsp) device name"},
39 >        {"mixer", TYPE_STRING, false,          "audio mixer device name"},
40 > #ifdef HAVE_SIGSEGV_SKIP_INSTRUCTION
41 >        {"ignoresegv", TYPE_BOOLEAN, false,    "ignore illegal memory accesses"},
42 > #endif
43          {NULL, TYPE_END, false, NULL} // End of list
44   };
45  
# Line 91 | Line 101 | void SavePrefs(void)
101  
102   void AddPlatformPrefsDefaults(void)
103   {
104 +        PrefsAddBool("keycodes", false);
105          PrefsReplaceString("extfs", "/");
106 +        PrefsReplaceInt32("mousewheelmode", 1);
107 +        PrefsReplaceInt32("mousewheellines", 3);
108          PrefsAddInt32("windowmodes", 3);
109          PrefsAddInt32("screenmodes", 0x3f);
110 + #ifdef __linux__
111 +        if (access("/dev/.devfsd", F_OK) < 0) {
112 +                PrefsReplaceString("dsp", "/dev/dsp");
113 +                PrefsReplaceString("mixer", "/dev/mixer");
114 +        } else {
115 +                PrefsReplaceString("dsp", "/dev/sound/dsp");
116 +                PrefsReplaceString("mixer", "/dev/sound/mixer");
117 +        }
118 + #else
119 +        PrefsReplaceString("dsp", "/dev/dsp");
120 +        PrefsReplaceString("mixer", "/dev/mixer");
121 + #endif
122 + #ifdef HAVE_SIGSEGV_SKIP_INSTRUCTION
123 +        PrefsAddBool("ignoresegv", false);
124 + #endif
125   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines