mirror of https://github.com/stella-emu/stella.git
libretro: Allow ROMs that are max size for Stella (instead of requiring 1 byte less).
This commit is contained in:
parent
43662449c1
commit
6869582d5a
|
@ -559,7 +559,7 @@ bool retro_load_game(const struct retro_game_info *info)
|
|||
{ 0, 0, 0, 0, NULL },
|
||||
};
|
||||
|
||||
if(!info || info->size >= stella.getROMMax()) return false;
|
||||
if(!info || info->size > stella.getROMMax()) return false;
|
||||
|
||||
environ_cb(RETRO_ENVIRONMENT_SET_INPUT_DESCRIPTORS, desc);
|
||||
|
||||
|
|
Loading…
Reference in New Issue