diff options
-rw-r--r-- | engines/hugo/detection.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/hugo/detection.cpp b/engines/hugo/detection.cpp index a005e649d4..c48a26b405 100644 --- a/engines/hugo/detection.cpp +++ b/engines/hugo/detection.cpp @@ -180,7 +180,6 @@ SaveStateList HugoMetaEngine::listSaves(const char *target) const { pattern += "-##.SAV"; filenames = saveFileMan->listSavefiles(pattern); - sort(filenames.begin(), filenames.end()); // Sort (hopefully ensuring we are sorted numerically..) SaveStateList saveList; char slot[3]; @@ -217,6 +216,8 @@ SaveStateList HugoMetaEngine::listSaves(const char *target) const { } } + // Sort saves based on slot number. + Common::sort(saveList.begin(), saveList.end(), SaveStateDescriptorSlotComparator()); return saveList; } |