aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorEugene Sandulenko2016-06-08 10:19:12 +0200
committerEugene Sandulenko2016-06-08 10:19:12 +0200
commitfd4bdcc01c3674c9d09cd2412b546791b67d8676 (patch)
treee8612c7cfafc0980a0db47700a762be0ceac299d /engines
parent989749b6e540988ff626cd8086ffedf7e877d337 (diff)
downloadscummvm-rg350-fd4bdcc01c3674c9d09cd2412b546791b67d8676.tar.gz
scummvm-rg350-fd4bdcc01c3674c9d09cd2412b546791b67d8676.tar.bz2
scummvm-rg350-fd4bdcc01c3674c9d09cd2412b546791b67d8676.zip
SWORD25: Use # as savefile matching pattern
Diffstat (limited to 'engines')
-rw-r--r--engines/sword25/detection.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sword25/detection.cpp b/engines/sword25/detection.cpp
index 4ca565c972..c5f55b5a26 100644
--- a/engines/sword25/detection.cpp
+++ b/engines/sword25/detection.cpp
@@ -91,7 +91,7 @@ const ExtraGuiOptions Sword25MetaEngine::getExtraGuiOptions(const Common::String
SaveStateList Sword25MetaEngine::listSaves(const char *target) const {
Common::String pattern = target;
- pattern = pattern + ".???";
+ pattern = pattern + ".###";
SaveStateList saveList;
Sword25::PersistenceService ps;