mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-02 23:01:42 +00:00
XEEN: Savegame name wasn't showing up for slot 99
This commit is contained in:
parent
0cd62950de
commit
b71bfdd531
@ -181,7 +181,7 @@ SaveStateList XeenMetaEngine::listSaves(const char *target) const {
|
||||
const char *ext = strrchr(file->c_str(), '.');
|
||||
int slot = ext ? atoi(ext + 1) : -1;
|
||||
|
||||
if (slot >= 0 && slot < MAX_SAVES) {
|
||||
if (slot >= 0 && slot <= MAX_SAVES) {
|
||||
Common::InSaveFile *in = g_system->getSavefileManager()->openForLoading(*file);
|
||||
|
||||
if (in) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user