From 32b0ec7632fdcb725efb2f4cf0a356ca67aac4fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Ko=C5=82odziejski?= Date: Thu, 30 Jan 2003 09:01:07 +0000 Subject: [PATCH] fix compatibility svn-id: r6575 --- scumm/string.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scumm/string.cpp b/scumm/string.cpp index 8b81296d18d..3666c99cd7a 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; }