[Scummvm-git-logs] scummvm master -> fb64903483229b81ce7afd92f569c38230b3ccfd
lephilousophe
lephilousophe at users.noreply.github.com
Mon Nov 1 14:40:50 UTC 2021
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
fb64903483 GUI: Fix usage of matchString
Commit: fb64903483229b81ce7afd92f569c38230b3ccfd
https://github.com/scummvm/scummvm/commit/fb64903483229b81ce7afd92f569c38230b3ccfd
Author: Le Philousophe (lephilousophe at users.noreply.github.com)
Date: 2021-11-01T15:40:29+01:00
Commit Message:
GUI: Fix usage of matchString
Changed paths:
gui/launcher.cpp
diff --git a/gui/launcher.cpp b/gui/launcher.cpp
index fda00e49f0..ab34d6986b 100644
--- a/gui/launcher.cpp
+++ b/gui/launcher.cpp
@@ -133,7 +133,7 @@ bool LauncherFilterMatcher(void *boss, int idx, const Common::U32String &item, C
} else if (token8[pos] == '=') {
result = data == filter;
} else if (token8[pos] == '~') {
- result = data.matchString(filter, false, false);
+ result = data.matchString(filter);
}
} else {
result = item.contains(token);
More information about the Scummvm-git-logs
mailing list