fix compatibility

svn-id: r6575
This commit is contained in:
Paweł Kołodziejski
2003-01-30 09:01:07 +00:00
parent b9fe365102
commit 32b0ec7632
+1 -1
View File
@@ -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;
}