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

Comparing BasiliskII/src/Windows/prefs_windows.cpp (file contents):
Revision 1.3 by gbeauche, 2004-12-03T22:04:24Z vs.
Revision 1.5 by gbeauche, 2004-12-05T15:05:25Z

# Line 42 | Line 42 | prefs_desc platform_prefs_items[] = {
42          {"ignoresegv", TYPE_BOOLEAN, false,    "ignore illegal memory accesses"},
43   #endif
44          {"enableextfs", TYPE_BOOLEAN, false,   "enable extfs system"},
45 +        {"debugextfs", TYPE_BOOLEAN, false,    "debug extfs system"},
46 +        {"extdrives", TYPE_STRING, false,      "define allowed extfs drives"},
47 +        {"pollmedia", TYPE_BOOLEAN, false,     "poll for new media (e.g. cd, floppy)"},
48 +
49          {NULL, TYPE_END, false, NULL} // End of list
50   };
51  
# Line 107 | Line 111 | void SavePrefs(void)
111   void AddPlatformPrefsDefaults(void)
112   {
113          PrefsAddBool("keycodes", false);
114 +        PrefsReplaceBool("pollmedia", true);
115 +        PrefsReplaceBool("enableextfs", false);
116          PrefsReplaceString("extfs", "");
117 +        PrefsReplaceString("extdrives", "CDEFGHIJKLMNOPQRSTUVWXYZ");
118          PrefsReplaceInt32("mousewheelmode", 1);
119          PrefsReplaceInt32("mousewheellines", 3);
120   #ifdef HAVE_SIGSEGV_SKIP_INSTRUCTION
121          PrefsAddBool("ignoresegv", false);
122   #endif
116        PrefsReplaceBool("enableextfs", false);
123   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines