diff options
author | Eugene Sandulenko | 2016-06-08 10:19:12 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2016-06-08 10:19:12 +0200 |
commit | fd4bdcc01c3674c9d09cd2412b546791b67d8676 (patch) | |
tree | e8612c7cfafc0980a0db47700a762be0ceac299d | |
parent | 989749b6e540988ff626cd8086ffedf7e877d337 (diff) | |
download | scummvm-rg350-fd4bdcc01c3674c9d09cd2412b546791b67d8676.tar.gz scummvm-rg350-fd4bdcc01c3674c9d09cd2412b546791b67d8676.tar.bz2 scummvm-rg350-fd4bdcc01c3674c9d09cd2412b546791b67d8676.zip |
SWORD25: Use # as savefile matching pattern
-rw-r--r-- | engines/sword25/detection.cpp | 2 |
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; |