diff options
author | Johannes Schickel | 2016-01-26 02:43:04 +0100 |
---|---|---|
committer | Johannes Schickel | 2016-01-26 16:35:30 +0100 |
commit | fee5944fe2b98b9f627bab88da936db4b36a9635 (patch) | |
tree | 2cdbbfcf92ba0faf70e3344fe0a742b14bee56da /engines/saga | |
parent | 7bfd43222312c9384ec0badb164979b3d7431ec6 (diff) | |
download | scummvm-rg350-fee5944fe2b98b9f627bab88da936db4b36a9635.tar.gz scummvm-rg350-fee5944fe2b98b9f627bab88da936db4b36a9635.tar.bz2 scummvm-rg350-fee5944fe2b98b9f627bab88da936db4b36a9635.zip |
SAGA: Only request actual save slots in listSaves.
Diffstat (limited to 'engines/saga')
-rw-r--r-- | engines/saga/detection.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/saga/detection.cpp b/engines/saga/detection.cpp index 8487811398..13ca63525a 100644 --- a/engines/saga/detection.cpp +++ b/engines/saga/detection.cpp @@ -180,7 +180,7 @@ SaveStateList SagaMetaEngine::listSaves(const char *target) const { Common::StringArray filenames; char saveDesc[SAVE_TITLE_SIZE]; Common::String pattern = target; - pattern += ".s??"; + pattern += ".s##"; filenames = saveFileMan->listSavefiles(pattern); sort(filenames.begin(), filenames.end()); // Sort (hopefully ensuring we are sorted numerically..) |