--- BasiliskII/src/AmigaOS/prefs_amiga.cpp 2001/02/02 20:52:57 1.4 +++ BasiliskII/src/AmigaOS/prefs_amiga.cpp 2005/01/30 21:42:13 1.9 @@ -1,7 +1,7 @@ /* * prefs_amiga.cpp - Preferences handling, AmigaOS specifix stuff * - * Basilisk II (C) 1997-2001 Christian Bauer + * Basilisk II (C) 1997-2005 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); }