From abd2c5406f3d2c1b69998a4bd5d8818b212107a5 Mon Sep 17 00:00:00 2001 From: gbeauche <> Date: Sun, 27 Mar 2005 22:08:33 +0000 Subject: [PATCH] Add "screen" prefs item similar to Basilisk II. Don't ignore SEGV by default as this could hide real bugs. --- SheepShaver/src/prefs_items.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/SheepShaver/src/prefs_items.cpp b/SheepShaver/src/prefs_items.cpp index 8b0649d9..155e90ff 100644 --- a/SheepShaver/src/prefs_items.cpp +++ b/SheepShaver/src/prefs_items.cpp @@ -37,6 +37,7 @@ prefs_desc common_prefs_items[] = { {"scsi4", TYPE_STRING, false, "SCSI target for Mac SCSI ID 4"}, {"scsi5", TYPE_STRING, false, "SCSI target for Mac SCSI ID 5"}, {"scsi6", TYPE_STRING, false, "SCSI target for Mac SCSI ID 6"}, + {"screen", TYPE_STRING, false, "video mode"}, {"windowmodes", TYPE_INT32, false, "bitmap of allowed window video modes"}, {"screenmodes", TYPE_INT32, false, "bitmap of allowed fullscreen video modes"}, {"seriala", TYPE_STRING, false, "device name of Mac serial port A"}, @@ -76,7 +77,7 @@ void AddPrefsDefaults(void) PrefsAddBool("nosound", false); PrefsAddBool("nogui", false); PrefsAddBool("noclipconversion", false); - PrefsAddBool("ignoresegv", true); + PrefsAddBool("ignoresegv", false); #if USE_JIT // JIT compiler specific options