mirror of https://github.com/stella-emu/stella.git
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.
This commit is contained in:
parent
fbb73b72f1
commit
66e5a07f20
|
@ -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", "");
|
||||
|
||||
|
|
|
@ -587,7 +587,7 @@ void VideoDialog::setDefaults()
|
|||
myColorLoss->setState(false);
|
||||
myUIMessages->setState(true);
|
||||
myCenter->setState(false);
|
||||
myFastSCBios->setState(false);
|
||||
myFastSCBios->setState(true);
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue