From 7b3a535f2fa95dce37d5f529e0d11195a79547fc Mon Sep 17 00:00:00 2001 From: gbeauche <> Date: Fri, 3 Dec 2004 22:04:24 +0000 Subject: [PATCH] Add Windows specific "enableextfs" prefs items. There, the "extfs" path is replaced by a virtual desktop containing all current drives. --- BasiliskII/src/Windows/prefs_windows.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/BasiliskII/src/Windows/prefs_windows.cpp b/BasiliskII/src/Windows/prefs_windows.cpp index 7acb3658..d33acd62 100755 --- a/BasiliskII/src/Windows/prefs_windows.cpp +++ b/BasiliskII/src/Windows/prefs_windows.cpp @@ -41,6 +41,7 @@ prefs_desc platform_prefs_items[] = { #ifdef HAVE_SIGSEGV_SKIP_INSTRUCTION {"ignoresegv", TYPE_BOOLEAN, false, "ignore illegal memory accesses"}, #endif + {"enableextfs", TYPE_BOOLEAN, false, "enable extfs system"}, {NULL, TYPE_END, false, NULL} // End of list }; @@ -112,4 +113,5 @@ void AddPlatformPrefsDefaults(void) #ifdef HAVE_SIGSEGV_SKIP_INSTRUCTION PrefsAddBool("ignoresegv", false); #endif + PrefsReplaceBool("enableextfs", false); }