Merge branch 'master' into feature/filesystem

This commit is contained in:
Stephen Anthony 2022-08-22 19:17:35 -02:30
commit a10e9edc01
2 changed files with 7 additions and 1 deletions

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:

View File

@ -188,7 +188,7 @@ bool RomImageWidget::changeImage(int direction)
#ifdef IMAGE_SUPPORT
if(direction == -1 && myImageIdx)
return loadImage(myImageList[--myImageIdx].getPath());
else if(direction == 1 && myImageIdx < myImageList.size() - 1)
else if(direction == 1 && myImageIdx + 1 < myImageList.size())
return loadImage(myImageList[++myImageIdx].getPath());
#endif
return false;