mirror of https://github.com/stella-emu/stella.git
disabled random start bank for MDM bankswitching ROMs
This commit is contained in:
parent
a7e19d1d6b
commit
c0bea2763b
|
@ -137,6 +137,12 @@ class CartridgeMDM : 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 (see above).
|
||||||
|
*/
|
||||||
|
bool randomStartBank() const override { return false; }
|
||||||
|
|
||||||
bool checkSwitchBank(uInt16 address, uInt8) override;
|
bool checkSwitchBank(uInt16 address, uInt8) override;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
Loading…
Reference in New Issue