diff options
author | Johannes Schickel | 2016-01-26 02:41:58 +0100 |
---|---|---|
committer | Johannes Schickel | 2016-01-26 16:35:30 +0100 |
commit | 351d8d5d388c06cb937110270c4f6c6e11a456e1 (patch) | |
tree | b10a376fcb5935b3ea0bac7be82d91de01b4a4c6 | |
parent | b2db9434de27f9740c911421f5edd3554fbc7ef1 (diff) | |
download | scummvm-rg350-351d8d5d388c06cb937110270c4f6c6e11a456e1.tar.gz scummvm-rg350-351d8d5d388c06cb937110270c4f6c6e11a456e1.tar.bz2 scummvm-rg350-351d8d5d388c06cb937110270c4f6c6e11a456e1.zip |
LURE: Only request actual save slots in listSaves.
-rw-r--r-- | engines/lure/detection.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/lure/detection.cpp b/engines/lure/detection.cpp index eff699b56b..902e8afd65 100644 --- a/engines/lure/detection.cpp +++ b/engines/lure/detection.cpp @@ -242,7 +242,7 @@ SaveStateList LureMetaEngine::listSaves(const char *target) const { Common::SaveFileManager *saveFileMan = g_system->getSavefileManager(); Common::StringArray filenames; Common::String saveDesc; - Common::String pattern = "lure.???"; + Common::String pattern = "lure.###"; filenames = saveFileMan->listSavefiles(pattern); sort(filenames.begin(), filenames.end()); // Sort (hopefully ensuring we are sorted numerically..) |