aboutsummaryrefslogtreecommitdiff
path: root/scumm/string.cpp
diff options
context:
space:
mode:
authorPaweł Kołodziejski2003-01-30 09:01:07 +0000
committerPaweł Kołodziejski2003-01-30 09:01:07 +0000
commit32b0ec7632fdcb725efb2f4cf0a356ca67aac4fe (patch)
tree1ff0b7197f572b35ef517af6a98dd447b50750a6 /scumm/string.cpp
parentb9fe3651021fb243f2984b8f5e61c5652961e808 (diff)
downloadscummvm-rg350-32b0ec7632fdcb725efb2f4cf0a356ca67aac4fe.tar.gz
scummvm-rg350-32b0ec7632fdcb725efb2f4cf0a356ca67aac4fe.tar.bz2
scummvm-rg350-32b0ec7632fdcb725efb2f4cf0a356ca67aac4fe.zip
fix compatibility
svn-id: r6575
Diffstat (limited to 'scumm/string.cpp')
-rw-r--r--scumm/string.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/string.cpp b/scumm/string.cpp
index 8b81296d18..3666c99cd7 100644
--- a/scumm/string.cpp
+++ b/scumm/string.cpp
@@ -866,7 +866,7 @@ void Scumm::translateText(byte *text, byte *trans_buff) {
l++;
} while((tmp[l] != 0) && (tmp[l] != 9) && (l < 19));
tmp2[l] = 0;
- if (stricmp(tmp2, name) == 0) {
+ if (scumm_stricmp(tmp2, name) == 0) {
strcpy((char*)trans_buff, &tmp[l + 1]);
return;
}