[Scummvm-git-logs] scummvm master -> b4fcb24c67ee90b8f88f0ff699f75ec0cd3f02fe
bonki
bonki at users.noreply.github.com
Mon Mar 26 01:27:04 CEST 2018
This automated email contains information about 2 new commits which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
f026186cdf XEEN: Be strict about matching digits in savegame filenames
b4fcb24c67 COMPOSER: Be strict about matching digits in savegame filenames
Commit: f026186cdf20c6df24d16b8b99ee03922b5e75f9
https://github.com/scummvm/scummvm/commit/f026186cdf20c6df24d16b8b99ee03922b5e75f9
Author: Adrian Frühwirth (bonki at users.noreply.github.com)
Date: 2018-03-26T01:24:25+02:00
Commit Message:
XEEN: Be strict about matching digits in savegame filenames
Changed paths:
engines/xeen/detection.cpp
diff --git a/engines/xeen/detection.cpp b/engines/xeen/detection.cpp
index cc1bdde..f245900 100644
--- a/engines/xeen/detection.cpp
+++ b/engines/xeen/detection.cpp
@@ -137,7 +137,7 @@ SaveStateList XeenMetaEngine::listSaves(const char *target) const {
Common::SaveFileManager *saveFileMan = g_system->getSavefileManager();
Common::StringArray filenames;
Common::String saveDesc;
- Common::String pattern = Common::String::format("%s.0??", target);
+ Common::String pattern = Common::String::format("%s.###", target);
Xeen::XeenSavegameHeader header;
filenames = saveFileMan->listSavefiles(pattern);
Commit: b4fcb24c67ee90b8f88f0ff699f75ec0cd3f02fe
https://github.com/scummvm/scummvm/commit/b4fcb24c67ee90b8f88f0ff699f75ec0cd3f02fe
Author: Adrian Frühwirth (bonki at users.noreply.github.com)
Date: 2018-03-26T01:26:15+02:00
Commit Message:
COMPOSER: Be strict about matching digits in savegame filenames
Changed paths:
engines/composer/detection.cpp
diff --git a/engines/composer/detection.cpp b/engines/composer/detection.cpp
index 72a8f82..c90dfe5 100644
--- a/engines/composer/detection.cpp
+++ b/engines/composer/detection.cpp
@@ -511,7 +511,7 @@ SaveStateList ComposerMetaEngine::listSaves(const char *target) const {
Common::SaveFileManager *saveFileMan = g_system->getSavefileManager();
Common::StringArray filenames;
Common::String saveDesc;
- Common::String pattern = Common::String::format("%s.??", target);
+ Common::String pattern = Common::String::format("%s.##", target);
filenames = saveFileMan->listSavefiles(pattern);
More information about the Scummvm-git-logs
mailing list