Use scumm_stricmp() instead of plain stricmp().

svn-id: r30505
This commit is contained in:
Torbjörn Andersson 2008-01-15 21:46:12 +00:00
parent 552353663d
commit 08f1357451

View File

@ -575,7 +575,7 @@ bool ImuseDigiSndMgr::checkForTriggerByRegionAndMarker(SoundDesc *soundDesc, int
int32 offset = soundDesc->region[region].offset;
for (int l = 0; l < soundDesc->numMarkers; l++) {
if (offset == soundDesc->marker[l].pos) {
if (!stricmp(soundDesc->marker[l].ptr, marker))
if (!scumm_stricmp(soundDesc->marker[l].ptr, marker))
return true;
}
}