aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
Diffstat (limited to 'engines')
-rw-r--r--engines/lab/detection.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/lab/detection.cpp b/engines/lab/detection.cpp
index eedf09fe30..d01dff2843 100644
--- a/engines/lab/detection.cpp
+++ b/engines/lab/detection.cpp
@@ -165,7 +165,7 @@ SaveStateList LabMetaEngine::listSaves(const char *target) const {
Common::SaveFileManager *saveFileMan = g_system->getSavefileManager();
Lab::SaveGameHeader header;
Common::String pattern = target;
- pattern += ".???";
+ pattern += ".###";
Common::StringArray filenames;
filenames = saveFileMan->listSavefiles(pattern.c_str());
@@ -202,7 +202,7 @@ void LabMetaEngine::removeSaveState(const char *target, int slot) const {
Common::StringArray filenames;
Common::String pattern = target;
- pattern += ".???";
+ pattern += ".###";
filenames = saveFileMan->listSavefiles(pattern.c_str());
Common::sort(filenames.begin(), filenames.end()); // Sort (hopefully ensuring we are sorted numerically..)