diff options
author | Filippos Karapetis | 2009-01-06 10:33:40 +0000 |
---|---|---|
committer | Filippos Karapetis | 2009-01-06 10:33:40 +0000 |
commit | e2e536ae1856ea7c203b65212c6000c3f718f1d7 (patch) | |
tree | db99009b8cd064d2a875322c68133471621d756e /engines/saga | |
parent | c6935f2f69bba2e315cd7172ad86e22c6c02b0c0 (diff) | |
download | scummvm-rg350-e2e536ae1856ea7c203b65212c6000c3f718f1d7.tar.gz scummvm-rg350-e2e536ae1856ea7c203b65212c6000c3f718f1d7.tar.bz2 scummvm-rg350-e2e536ae1856ea7c203b65212c6000c3f718f1d7.zip |
Fixed regression: the ITE Mac version works correctly again
svn-id: r35749
Diffstat (limited to 'engines/saga')
-rw-r--r-- | engines/saga/resource.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/saga/resource.cpp b/engines/saga/resource.cpp index 755caa2946..e2fe158c12 100644 --- a/engines/saga/resource.cpp +++ b/engines/saga/resource.cpp @@ -369,7 +369,8 @@ bool Resource::createContexts() { // 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 - voiceFileType = GAME_VOICEFILE | GAME_SWAPENDIAN; // This file is big endian + if (!_vm->isBigEndian()) + voiceFileType = GAME_VOICEFILE | GAME_SWAPENDIAN; // This file is big endian } if (!scumm_stricmp(curSoundfiles[i].fileName, "ite voices.bin")) { |