disabled random start bank for 3E+ carts (fixes #800)

This commit is contained in:
Thomas Jentzsch 2021-05-20 19:19:29 +02:00
parent f9491ad25d
commit ac26a6f361
1 changed files with 6 additions and 0 deletions

View File

@ -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: