[Scummvm-cvs-logs] SF.net SVN: scummvm: [30505] scummvm/trunk/engines/scumm/imuse_digi/ dimuse_sndmgr.cpp

eriktorbjorn at users.sourceforge.net eriktorbjorn at users.sourceforge.net
Tue Jan 15 22:46:12 CET 2008


Revision: 30505
          http://scummvm.svn.sourceforge.net/scummvm/?rev=30505&view=rev
Author:   eriktorbjorn
Date:     2008-01-15 13:46:12 -0800 (Tue, 15 Jan 2008)

Log Message:
-----------
Use scumm_stricmp() instead of plain stricmp().

Modified Paths:
--------------
    scummvm/trunk/engines/scumm/imuse_digi/dimuse_sndmgr.cpp

Modified: scummvm/trunk/engines/scumm/imuse_digi/dimuse_sndmgr.cpp
===================================================================
--- scummvm/trunk/engines/scumm/imuse_digi/dimuse_sndmgr.cpp	2008-01-15 21:38:06 UTC (rev 30504)
+++ scummvm/trunk/engines/scumm/imuse_digi/dimuse_sndmgr.cpp	2008-01-15 21:46:12 UTC (rev 30505)
@@ -575,7 +575,7 @@
 	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;
 		}
 	}


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list