diff options
author | Torbjörn Andersson | 2008-01-15 21:46:12 +0000 |
---|---|---|
committer | Torbjörn Andersson | 2008-01-15 21:46:12 +0000 |
commit | 08f135745186a7080ddc1b1e7fafed92ce92b3e0 (patch) | |
tree | dea275ea443812ca72e03d9cb9b738b8dfd05bbe /engines | |
parent | 552353663d563d12fa983822740de8336e69b73d (diff) | |
download | scummvm-rg350-08f135745186a7080ddc1b1e7fafed92ce92b3e0.tar.gz scummvm-rg350-08f135745186a7080ddc1b1e7fafed92ce92b3e0.tar.bz2 scummvm-rg350-08f135745186a7080ddc1b1e7fafed92ce92b3e0.zip |
Use scumm_stricmp() instead of plain stricmp().
svn-id: r30505
Diffstat (limited to 'engines')
-rw-r--r-- | engines/scumm/imuse_digi/dimuse_sndmgr.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/scumm/imuse_digi/dimuse_sndmgr.cpp b/engines/scumm/imuse_digi/dimuse_sndmgr.cpp index 1ef23e915d..16b14374a1 100644 --- a/engines/scumm/imuse_digi/dimuse_sndmgr.cpp +++ b/engines/scumm/imuse_digi/dimuse_sndmgr.cpp @@ -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; } } |