[Scummvm-cvs-logs] SF.net SVN: scummvm: [22366] scummvm/trunk/engines/simon/animation.cpp
eriktorbjorn at users.sourceforge.net
eriktorbjorn at users.sourceforge.net
Sat May 6 01:31:01 CEST 2006
Revision: 22366
Author: eriktorbjorn
Date: 2006-05-06 01:30:39 -0700 (Sat, 06 May 2006)
ViewCVS: http://svn.sourceforge.net/scummvm/?rev=22366&view=rev
Log Message:
-----------
Use scumm_stricmp() instead of stricmp() to fix compile error on some systems,
e.g. mine.
Modified Paths:
--------------
scummvm/trunk/engines/simon/animation.cpp
Modified: scummvm/trunk/engines/simon/animation.cpp
===================================================================
--- scummvm/trunk/engines/simon/animation.cpp 2006-05-06 08:21:57 UTC (rev 22365)
+++ scummvm/trunk/engines/simon/animation.cpp 2006-05-06 08:30:39 UTC (rev 22366)
@@ -93,7 +93,7 @@
_vm->_language != Common::EN_ANY) {
_sequenceNum = 0;
for (i = 0; i < 90; i++) {
- if (!stricmp(filename2, _sequenceList[i]))
+ if (!scumm_stricmp(filename2, _sequenceList[i]))
_sequenceNum = i;
}
}
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