mirror of https://github.com/stella-emu/stella.git
fixed multiple images crash when no images exist
This commit is contained in:
parent
31efb08742
commit
a7e19d1d6b
|
@ -188,7 +188,7 @@ bool RomImageWidget::changeImage(int direction)
|
||||||
#ifdef IMAGE_SUPPORT
|
#ifdef IMAGE_SUPPORT
|
||||||
if(direction == -1 && myImageIdx)
|
if(direction == -1 && myImageIdx)
|
||||||
return loadImage(myImageList[--myImageIdx].getPath());
|
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());
|
return loadImage(myImageList[++myImageIdx].getPath());
|
||||||
#endif
|
#endif
|
||||||
return false;
|
return false;
|
||||||
|
|
Loading…
Reference in New Issue