disabled random start bank for MDM bankswitching ROMs

This commit is contained in:
Thomas Jentzsch 2022-08-22 09:36:38 +02:00
parent a7e19d1d6b
commit c0bea2763b

View File

@ -137,6 +137,12 @@ class CartridgeMDM : public CartridgeEnhanced
bool poke(uInt16 address, uInt8 value) override;
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;
private: