From 66e5a07f20b72d9ea448b4bc52bb1ea655e8a9d3 Mon Sep 17 00:00:00 2001 From: Stephen Anthony Date: Thu, 13 Jul 2017 20:53:20 -0230 Subject: [PATCH] Make 'fastscbios' option default to true. This was mentioned in some thread; I forget where, but the consensus is that this should be the default. --- src/emucore/Settings.cxx | 2 +- src/gui/VideoDialog.cxx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/emucore/Settings.cxx b/src/emucore/Settings.cxx index 2a8d1e5bd..c90222b01 100644 --- a/src/emucore/Settings.cxx +++ b/src/emucore/Settings.cxx @@ -136,7 +136,7 @@ Settings::Settings(OSystem& osystem) setInternal("ramrandom", "true"); setInternal("avoxport", ""); setInternal("stats", "false"); - setInternal("fastscbios", "false"); + setInternal("fastscbios", "true"); setExternal("romloadcount", "0"); setExternal("maxres", ""); diff --git a/src/gui/VideoDialog.cxx b/src/gui/VideoDialog.cxx index dec8a4c20..2b87da86c 100644 --- a/src/gui/VideoDialog.cxx +++ b/src/gui/VideoDialog.cxx @@ -587,7 +587,7 @@ void VideoDialog::setDefaults() myColorLoss->setState(false); myUIMessages->setState(true); myCenter->setState(false); - myFastSCBios->setState(false); + myFastSCBios->setState(true); break; }