mirror of https://github.com/stella-emu/stella.git
disabled random startup bank for CartWD
This commit is contained in:
parent
f934b9e05e
commit
ec6e9394ec
|
@ -152,6 +152,12 @@ class CartridgeWD : public CartridgeEnhanced
|
||||||
bool poke(uInt16 address, uInt8 value) override;
|
bool poke(uInt16 address, uInt8 value) override;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
/**
|
||||||
|
Checks if startup bank randomization is enabled. For this scheme,
|
||||||
|
randomization is not supported.
|
||||||
|
*/
|
||||||
|
bool randomStartBank() const override { return false; }
|
||||||
|
|
||||||
bool checkSwitchBank(uInt16, uInt8 = 0) override { return false; }
|
bool checkSwitchBank(uInt16, uInt8 = 0) override { return false; }
|
||||||
|
|
||||||
uInt16 hotspot() const override { return 0x0030; }
|
uInt16 hotspot() const override { return 0x0030; }
|
||||||
|
|
Loading…
Reference in New Issue