aboutsummaryrefslogtreecommitdiff
path: root/engines/sci
diff options
context:
space:
mode:
authorJohannes Schickel2009-09-23 00:14:06 +0000
committerJohannes Schickel2009-09-23 00:14:06 +0000
commit75113ad5f325f7b6ab802becf845705f97dd629e (patch)
tree9a85782d7ee18226dc8355e3add9b4c37905693a /engines/sci
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 'engines/sci')
-rw-r--r--engines/sci/engine/kfile.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/engine/kfile.cpp b/engines/sci/engine/kfile.cpp
index 51ef1ddb7c..e41be678c0 100644
--- a/engines/sci/engine/kfile.cpp
+++ b/engines/sci/engine/kfile.cpp
@@ -376,7 +376,7 @@ reg_t kDeviceInfo(EngineState *s, int, int argc, reg_t *argv) {
char *path2_s = s->segMan->derefString(argv[2]);
debug(3, "K_DEVICE_INFO_PATHS_EQUAL(%s,%s)", path1_s, path2_s);
- return make_reg(0, Common::matchString(path2_s, path1_s, true));
+ return make_reg(0, Common::matchString(path2_s, path1_s, false, true));
}
break;