aboutsummaryrefslogtreecommitdiff
path: root/common/fs.cpp
diff options
context:
space:
mode:
authorJohannes Schickel2009-09-23 00:14:06 +0000
committerJohannes Schickel2009-09-23 00:14:06 +0000
commit75113ad5f325f7b6ab802becf845705f97dd629e (patch)
tree9a85782d7ee18226dc8355e3add9b4c37905693a /common/fs.cpp
parentebde95b3d85ffd0cfc93d84a7e4cf6c75b485408 (diff)
downloadscummvm-rg350-75113ad5f325f7b6ab802becf845705f97dd629e.tar.gz
scummvm-rg350-75113ad5f325f7b6ab802becf845705f97dd629e.tar.bz2
scummvm-rg350-75113ad5f325f7b6ab802becf845705f97dd629e.zip
COMMON: Add "ignoreCase" parameter to matchString.
svn-id: r44265
Diffstat (limited to 'common/fs.cpp')
-rw-r--r--common/fs.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/fs.cpp b/common/fs.cpp
index 742177ea4a..1bc1c370b9 100644
--- a/common/fs.cpp
+++ b/common/fs.cpp
@@ -320,7 +320,7 @@ int FSDirectory::listMatchingMembers(ArchiveMemberList &list, const String &patt
int matches = 0;
NodeCache::iterator it = _fileCache.begin();
for ( ; it != _fileCache.end(); ++it) {
- if (it->_key.matchString(lowercasePattern, true)) {
+ if (it->_key.matchString(lowercasePattern, false, true)) {
list.push_back(ArchiveMemberPtr(new FSNode(it->_value)));
matches++;
}