diff options
Diffstat (limited to 'engines')
-rw-r--r-- | engines/lab/detection.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/lab/detection.cpp b/engines/lab/detection.cpp index d01dff2843..b080a80f68 100644 --- a/engines/lab/detection.cpp +++ b/engines/lab/detection.cpp @@ -169,7 +169,6 @@ SaveStateList LabMetaEngine::listSaves(const char *target) const { Common::StringArray filenames; filenames = saveFileMan->listSavefiles(pattern.c_str()); - Common::sort(filenames.begin(), filenames.end()); // Sort (hopefully ensuring we are sorted numerically..)*/ SaveStateList saveList; @@ -187,6 +186,8 @@ SaveStateList LabMetaEngine::listSaves(const char *target) const { } } + // Sort saves based on slot number. + Common::sort(saveList.begin(), saveList.end(), SaveStateDescriptorSlotComparator()); return saveList; } |