aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaweł Kołodziejski2004-07-01 05:46:39 +0000
committerPaweł Kołodziejski2004-07-01 05:46:39 +0000
commita6068ff5ae65cf4a5b74a8514feb9ebdbc826bd1 (patch)
tree3369bce0ffe5698f47fc2783731ab375c78b990f
parentdcc74eb07d1d1ae1a8d67b4ae78e1895fa63eb64 (diff)
downloadscummvm-rg350-a6068ff5ae65cf4a5b74a8514feb9ebdbc826bd1.tar.gz
scummvm-rg350-a6068ff5ae65cf4a5b74a8514feb9ebdbc826bd1.tar.bz2
scummvm-rg350-a6068ff5ae65cf4a5b74a8514feb9ebdbc826bd1.zip
fixed compilation
svn-id: r14139
-rw-r--r--scumm/resource_v7he.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/resource_v7he.cpp b/scumm/resource_v7he.cpp
index 477c8ee248..ef3d53858c 100644
--- a/scumm/resource_v7he.cpp
+++ b/scumm/resource_v7he.cpp
@@ -163,7 +163,7 @@ const char *Win32ResExtractor::res_type_string_to_id(const char *type) {
return NULL;
for (c = 0 ; c < (int)RES_TYPE_COUNT ; c++) {
- if (res_types[c] != NULL && !strcasecmp(type, res_types[c]))
+ if (res_types[c] != NULL && !scumm_stricmp(type, res_types[c]))
return res_type_ids[c];
}