aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorJohannes Schickel2009-11-21 20:26:55 +0000
committerJohannes Schickel2009-11-21 20:26:55 +0000
commit1ba750063c5034c8cfa383dc9f33e25ace95ee63 (patch)
treebb9cfdf2fb38dfedd301f60bc00df6f9c344caf6 /common
parentbf5ce985a0807e0756702e092ee43255a725c692 (diff)
downloadscummvm-rg350-1ba750063c5034c8cfa383dc9f33e25ace95ee63.tar.gz
scummvm-rg350-1ba750063c5034c8cfa383dc9f33e25ace95ee63.tar.bz2
scummvm-rg350-1ba750063c5034c8cfa383dc9f33e25ace95ee63.zip
Ooops...
svn-id: r46048
Diffstat (limited to 'common')
-rw-r--r--common/archive.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/archive.cpp b/common/archive.cpp
index 2e2aca6b22..f0790f1a27 100644
--- a/common/archive.cpp
+++ b/common/archive.cpp
@@ -54,7 +54,7 @@ int Archive::listMatchingMembers(ArchiveMemberList &list, const String &pattern)
for ( ; it != allNames.end(); ++it) {
// TODO: We match case-insenstivie for now, our API does not define whether that's ok or not though...
// For our use case case-insensitive is probably what we want to have though.
- if ((*it)->getName().matchString(lowercasePattern, true, true)) {
+ if ((*it)->getName().matchString(pattern, true, true)) {
list.push_back(*it);
matches++;
}