mirror of https://github.com/stella-emu/stella.git
Removed 'fastscbios' option, since now it always needs to be enabled
(or at least until I can figure out how to bypass it entirely when testing whether a ROM is NTSC or PAL). git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@1267 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
This commit is contained in:
parent
b679b3e87b
commit
c022f9ab5f
|
@ -13,7 +13,7 @@
|
|||
// See the file "license" for information on usage and redistribution of
|
||||
// this file, and for a DISCLAIMER OF ALL WARRANTIES.
|
||||
//
|
||||
// $Id: Cart.cxx,v 1.28 2007-01-01 18:04:45 stephena Exp $
|
||||
// $Id: Cart.cxx,v 1.29 2007-01-03 17:37:46 stephena Exp $
|
||||
//============================================================================
|
||||
|
||||
#include <cassert>
|
||||
|
@ -96,7 +96,7 @@ Cartridge* Cartridge::create(const uInt8* image, uInt32 size,
|
|||
else if(type == "4K")
|
||||
cartridge = new Cartridge4K(image);
|
||||
else if(type == "AR")
|
||||
cartridge = new CartridgeAR(image, size, settings.getBool("fastscbios"));
|
||||
cartridge = new CartridgeAR(image, size, true); //settings.getBool("fastscbios")
|
||||
else if(type == "DPC")
|
||||
cartridge = new CartridgeDPC(image, size);
|
||||
else if(type == "E0")
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
// See the file "license" for information on usage and redistribution of
|
||||
// this file, and for a DISCLAIMER OF ALL WARRANTIES.
|
||||
//
|
||||
// $Id: Settings.cxx,v 1.114 2007-01-03 12:59:22 stephena Exp $
|
||||
// $Id: Settings.cxx,v 1.115 2007-01-03 17:37:46 stephena Exp $
|
||||
//============================================================================
|
||||
|
||||
#include <cassert>
|
||||
|
@ -83,7 +83,6 @@ Settings::Settings(OSystem* osystem)
|
|||
setInternal("launchersize", "2");
|
||||
setInternal("uipalette", "0");
|
||||
setInternal("autoslot", "false");
|
||||
setInternal("fastscbios", "true");
|
||||
}
|
||||
|
||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
|
@ -322,7 +321,6 @@ void Settings::usage()
|
|||
<< " -pthresh <number> Set threshold for eliminating paddle jitter\n"
|
||||
<< " -rombrowse <1|0> Use ROM browser mode (shows files and folders)\n"
|
||||
<< " -autoslot <1|0> Automatically switch to next save slot when state saving\n"
|
||||
<< " -fastscbios <1|0> Speed up loading of SuperCharger ROM BIOS\n"
|
||||
#ifdef UNIX
|
||||
<< " -accurate <1|0> Accurate game timing (uses more CPU)\n"
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue