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.4 by gbeauche, 2004-12-03T22:59:39Z

# 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          {NULL, TYPE_END, false, NULL} // End of list
48   };
49  
# Line 107 | Line 109 | void SavePrefs(void)
109   void AddPlatformPrefsDefaults(void)
110   {
111          PrefsAddBool("keycodes", false);
112 +        PrefsReplaceBool("enableextfs", false);
113          PrefsReplaceString("extfs", "");
114 +        PrefsReplaceString("extdrives", "CDEFGHIJKLMNOPQRSTUVWXYZ");
115          PrefsReplaceInt32("mousewheelmode", 1);
116          PrefsReplaceInt32("mousewheellines", 3);
117   #ifdef HAVE_SIGSEGV_SKIP_INSTRUCTION
118          PrefsAddBool("ignoresegv", false);
119   #endif
116        PrefsReplaceBool("enableextfs", false);
120   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines