mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-23 11:04:44 +00:00
QUEEN: Let listSaves return list sorted on slot numbers.
This commit is contained in:
parent
c5f4197fd0
commit
cb07a1bb1d
@ -477,7 +477,6 @@ SaveStateList QueenMetaEngine::listSaves(const char *target) const {
|
||||
Common::String pattern("queen.s##");
|
||||
|
||||
filenames = saveFileMan->listSavefiles(pattern);
|
||||
sort(filenames.begin(), filenames.end()); // Sort (hopefully ensuring we are sorted numerically..)
|
||||
|
||||
SaveStateList saveList;
|
||||
for (Common::StringArray::const_iterator file = filenames.begin(); file != filenames.end(); ++file) {
|
||||
@ -496,6 +495,8 @@ SaveStateList QueenMetaEngine::listSaves(const char *target) const {
|
||||
}
|
||||
}
|
||||
|
||||
// Sort saves based on slot number.
|
||||
Common::sort(saveList.begin(), saveList.end(), SaveStateDescriptorSlotComparator());
|
||||
return saveList;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user