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

Comparing BasiliskII/src/Unix/prefs_unix.cpp (file contents):
Revision 1.3 by cebix, 1999-10-21T16:07:34Z vs.
Revision 1.4 by cebix, 1999-10-25T20:22:35Z

# Line 30 | Line 30
30   prefs_desc platform_prefs_items[] = {
31          {"keycodes", TYPE_BOOLEAN, false},              // Use keycodes rather than keysyms to decode keyboard (video_x.cpp)
32          {"keycodefile", TYPE_STRING, false},    // File name of keycode translation table (video_x.cpp)
33 <        {"fbdevicefile", TYPE_STRING, false},   // File name of frame buffer device specifications
33 >        {"fbdevicefile", TYPE_STRING, false},   // File name of frame buffer device specifications (video_x.cpp)
34 >        {"mousewheelmode", TYPE_INT16, false},  // Mouse wheel support mode (0=Page up/down, 1=Cursor up/down) (video_x.cpp)
35 >        {"mousewheellines", TYPE_INT16, false}, // Number of lines to scroll in mouse whell mode 1 (video_x.cpp)
36          {NULL, TYPE_END, false} // End of list
37   };
38  
# Line 94 | Line 96 | void AddPlatformPrefsDefaults(void)
96   {
97          PrefsAddBool("keycodes", false);
98          PrefsReplaceString("extfs", "/");
99 +        PrefsReplaceInt16("mousewheelmode", 1);
100 +        PrefsReplaceInt16("mousewheellines", 3);
101   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines