1 |
|
/* |
2 |
|
* prefs_items.cpp - Common preferences items |
3 |
|
* |
4 |
< |
* Basilisk II (C) 1997-2000 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 |
18 |
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
19 |
|
*/ |
20 |
|
|
21 |
+ |
#include "sysdeps.h" |
22 |
+ |
|
23 |
+ |
#include "sys.h" |
24 |
|
#include "prefs.h" |
25 |
|
|
26 |
|
|
27 |
|
// Common preferences items (those which exist on all platforms) |
28 |
|
// Except for "disk", "floppy", "cdrom", "scsiX", "screen", "rom" and "ether", |
29 |
< |
// these are guaranteed to be in the prefs; "disk", "floppy" and "cdrom" can |
27 |
< |
// occur multiple times |
29 |
> |
// these are guaranteed to be in the prefs. |
30 |
|
prefs_desc common_prefs_items[] = { |
31 |
|
{"disk", TYPE_STRING, true}, // Device/file names of Mac volumes (disk.cpp) |
32 |
|
{"floppy", TYPE_STRING, true}, // Device/file names of Mac floppy drives (sony.cpp) |
44 |
|
{"serialb", TYPE_STRING, false}, // Device name of Mac serial port B (serial_*.cpp) |
45 |
|
{"ether", TYPE_STRING, false}, // Device name of Mac ethernet adapter (ether_*.cpp) |
46 |
|
{"rom", TYPE_STRING, false}, // Path of ROM file (main_*.cpp) |
47 |
< |
{"bootdrive", TYPE_INT16, false}, // Boot drive number (main.cpp) |
48 |
< |
{"bootdriver", TYPE_INT16, false}, // Boot driver number (main.cpp) |
47 |
> |
{"bootdrive", TYPE_INT32, false}, // Boot drive number (main.cpp) |
48 |
> |
{"bootdriver", TYPE_INT32, false}, // Boot driver number (main.cpp) |
49 |
|
{"ramsize", TYPE_INT32, false}, // Size of Mac RAM in bytes (main_*.cpp) |
50 |
|
{"frameskip", TYPE_INT32, false}, // Number of frames to skip in refreshed video modes (video_*.cpp) |
51 |
|
{"modelid", TYPE_INT32, false}, // Mac Model ID (Gestalt Model ID minus 6) (rom_patches.cpp) |
66 |
|
void AddPrefsDefaults(void) |
67 |
|
{ |
68 |
|
SysAddSerialPrefs(); |
69 |
< |
PrefsAddInt16("bootdriver", 0); |
70 |
< |
PrefsAddInt16("bootdrive", 0); |
69 |
> |
PrefsAddInt32("bootdriver", 0); |
70 |
> |
PrefsAddInt32("bootdrive", 0); |
71 |
|
PrefsAddInt32("ramsize", 8 * 1024 * 1024); |
72 |
|
PrefsAddInt32("frameskip", 6); |
73 |
|
PrefsAddInt32("modelid", 5); // Mac IIci |