mirror of
https://github.com/libretro/scummvm.git
synced 2025-05-13 09:36:21 +00:00
Fixing compilation
svn-id: r35055
This commit is contained in:
parent
66e86283cb
commit
2ec6e678be
@ -457,8 +457,8 @@ bool Resource::createContexts() {
|
||||
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 @@ bool Resource::createContexts() {
|
||||
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
|
||||
|
Loading…
x
Reference in New Issue
Block a user