[Scummvm-cvs-logs] SF.net SVN: scummvm:[35055] scummvm/trunk/engines/saga/rscfile.cpp
drmccoy at users.sourceforge.net
drmccoy at users.sourceforge.net
Fri Nov 14 14:26:24 CET 2008
Revision: 35055
http://scummvm.svn.sourceforge.net/scummvm/?rev=35055&view=rev
Author: drmccoy
Date: 2008-11-14 13:26:23 +0000 (Fri, 14 Nov 2008)
Log Message:
-----------
Fixing compilation
Modified Paths:
--------------
scummvm/trunk/engines/saga/rscfile.cpp
Modified: scummvm/trunk/engines/saga/rscfile.cpp
===================================================================
--- scummvm/trunk/engines/saga/rscfile.cpp 2008-11-14 12:19:10 UTC (rev 35054)
+++ scummvm/trunk/engines/saga/rscfile.cpp 2008-11-14 13:26:23 UTC (rev 35055)
@@ -457,8 +457,8 @@
fileFound = true;
// Special cases
- if (!stricmp(curSoundfiles[i].fileName, "inherit the earth voices") ||
- !stricmp(curSoundfiles[i].fileName, "inherit the earth voices.cmp")) {
+ if (!scumm_stricmp(curSoundfiles[i].fileName, "inherit the earth voices") ||
+ !scumm_stricmp(curSoundfiles[i].fileName, "inherit the earth voices.cmp")) {
// The resources in the Wyrmkeep combined Windows/Mac/Linux CD version are little endian, but
// the voice file is big endian. If we got such a version with mixed files, mark this voice file
// as big endian
@@ -466,12 +466,12 @@
voiceFileType = GAME_VOICEFILE | GAME_SWAPENDIAN; // This file is big endian
}
- if (!stricmp(curSoundfiles[i].fileName, "ite voices.bin")) {
+ if (!scumm_stricmp(curSoundfiles[i].fileName, "ite voices.bin")) {
voiceFileType = GAME_VOICEFILE | GAME_MACBINARY;
}
- if (!stricmp(curSoundfiles[i].fileName, "voicess.res") ||
- !stricmp(curSoundfiles[i].fileName, "voicess.cmp")) {
+ if (!scumm_stricmp(curSoundfiles[i].fileName, "voicess.res") ||
+ !scumm_stricmp(curSoundfiles[i].fileName, "voicess.cmp")) {
// IHNM has multiple voice files
multipleVoices = true;
// Note: it is assumed that the voice files are always last in the list
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