--- BasiliskII/src/Unix/prefs_unix.cpp 1999/10/03 14:16:25 1.1 +++ BasiliskII/src/Unix/prefs_unix.cpp 2000/04/10 18:53:05 1.5 @@ -1,7 +1,7 @@ /* * prefs_unix.cpp - Preferences handling, Unix specifix stuff * - * Basilisk II (C) 1997-1999 Christian Bauer + * Basilisk II (C) 1997-2000 Christian Bauer * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -30,6 +30,9 @@ prefs_desc platform_prefs_items[] = { {"keycodes", TYPE_BOOLEAN, false}, // Use keycodes rather than keysyms to decode keyboard (video_x.cpp) {"keycodefile", TYPE_STRING, false}, // File name of keycode translation table (video_x.cpp) + {"fbdevicefile", TYPE_STRING, false}, // File name of frame buffer device specifications (video_x.cpp) + {"mousewheelmode", TYPE_INT16, false}, // Mouse wheel support mode (0=Page up/down, 1=Cursor up/down) (video_x.cpp) + {"mousewheellines", TYPE_INT16, false}, // Number of lines to scroll in mouse whell mode 1 (video_x.cpp) {NULL, TYPE_END, false} // End of list }; @@ -92,4 +95,7 @@ void SavePrefs(void) void AddPlatformPrefsDefaults(void) { PrefsAddBool("keycodes", false); + PrefsReplaceString("extfs", "/"); + PrefsReplaceInt16("mousewheelmode", 1); + PrefsReplaceInt16("mousewheellines", 3); }