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 |
|
|
96 |
|
{ |
97 |
|
PrefsAddBool("keycodes", false); |
98 |
|
PrefsReplaceString("extfs", "/"); |
99 |
+ |
PrefsReplaceInt16("mousewheelmode", 1); |
100 |
+ |
PrefsReplaceInt16("mousewheellines", 3); |
101 |
|
} |