mirror of https://github.com/stella-emu/stella.git
disabled random start bank for 3E+ carts (fixes #800)
This commit is contained in:
parent
f9491ad25d
commit
ac26a6f361
|
@ -125,6 +125,12 @@ class Cartridge3EPlus: public Cartridge3E
|
|||
#endif
|
||||
|
||||
private:
|
||||
/**
|
||||
Checks if startup bank randomization is enabled. For this scheme,
|
||||
randomization is not supported (see above).
|
||||
*/
|
||||
bool randomStartBank() const override { return false; }
|
||||
|
||||
bool checkSwitchBank(uInt16 address, uInt8 value) override;
|
||||
|
||||
private:
|
||||
|
|
Loading…
Reference in New Issue