--- BasiliskII/src/AmigaOS/prefs_amiga.cpp 1999/10/21 22:39:57 1.2 +++ BasiliskII/src/AmigaOS/prefs_amiga.cpp 2002/01/15 14:58:34 1.7 @@ -1,7 +1,7 @@ /* * prefs_amiga.cpp - Preferences handling, AmigaOS specifix stuff * - * Basilisk II (C) 1997-1999 Christian Bauer + * Basilisk II (C) 1997-2002 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 @@ -26,8 +26,9 @@ // Platform-specific preferences items prefs_desc platform_prefs_items[] = { - {"sound", TYPE_STRING, false}, // Sound output mode description (audio_amiga.cpp) - {NULL, TYPE_END, false} // End of list + {"sound", TYPE_STRING, false, "sound output mode description"}, + {"scsimemtype", TYPE_INT32, false, "SCSI buffer memory type"}, + {NULL, TYPE_END, false, NULL} // End of list }; @@ -84,4 +85,5 @@ void SavePrefs(void) void AddPlatformPrefsDefaults(void) { PrefsReplaceString("extfs", "WORK:"); + PrefsAddInt32("scsimemtype", 0); }