XEEN: Savegame name wasn't showing up for slot 99

This commit is contained in:
Paul Gilbert 2018-05-04 19:36:22 -04:00
parent 0cd62950de
commit b71bfdd531

View File

@ -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) {