1 |
|
/* |
2 |
|
* prefs_amiga.cpp - Preferences handling, AmigaOS specifix stuff |
3 |
|
* |
4 |
< |
* Basilisk II (C) 1997-2001 Christian Bauer |
4 |
> |
* Basilisk II (C) 1997-2008 Christian Bauer |
5 |
|
* |
6 |
|
* This program is free software; you can redistribute it and/or modify |
7 |
|
* it under the terms of the GNU General Public License as published by |
26 |
|
|
27 |
|
// Platform-specific preferences items |
28 |
|
prefs_desc platform_prefs_items[] = { |
29 |
< |
{"sound", TYPE_STRING, false}, // Sound output mode description (audio_amiga.cpp) |
30 |
< |
{NULL, TYPE_END, false} // End of list |
29 |
> |
{"sound", TYPE_STRING, false, "sound output mode description"}, |
30 |
> |
{"scsimemtype", TYPE_INT32, false, "SCSI buffer memory type"}, |
31 |
> |
{NULL, TYPE_END, false, NULL} // End of list |
32 |
|
}; |
33 |
|
|
34 |
|
|
85 |
|
void AddPlatformPrefsDefaults(void) |
86 |
|
{ |
87 |
|
PrefsReplaceString("extfs", "WORK:"); |
88 |
+ |
PrefsAddInt32("scsimemtype", 0); |
89 |
|
} |