1 |
|
/* |
2 |
|
* prefs_beos.cpp - Preferences handling, BeOS specific stuff |
3 |
|
* |
4 |
< |
* Basilisk II (C) 1997-1999 Christian Bauer |
4 |
> |
* Basilisk II (C) 1997-2001 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 |
30 |
|
|
31 |
|
// Platform-specific preferences items |
32 |
|
prefs_desc platform_prefs_items[] = { |
33 |
< |
{"powerrom", TYPE_STRING, false}, // Path of PowerMac ROM (powerrom_cpu.cpp) |
34 |
< |
{NULL, TYPE_END, false} // End of list |
33 |
> |
{"powerrom", TYPE_STRING, false, "path of PowerMac ROM"}, |
34 |
> |
{NULL, TYPE_END, false, NULL} // End of list |
35 |
|
}; |
36 |
|
|
37 |
|
|
87 |
|
|
88 |
|
void AddPlatformPrefsDefaults(void) |
89 |
|
{ |
90 |
+ |
PrefsReplaceString("extfs", "/boot"); |
91 |
|
} |