aboutsummaryrefslogtreecommitdiff
path: root/engines/saga
diff options
context:
space:
mode:
authorFilippos Karapetis2007-10-28 04:14:52 +0000
committerFilippos Karapetis2007-10-28 04:14:52 +0000
commitfc8568509932b5903b5367c066a07603d3d438ea (patch)
tree573d0eadd6ddba6760e88bfad88561e1259233c5 /engines/saga
parent59f2a90a6fac7b30441770e498dc2dbd818021d0 (diff)
downloadscummvm-rg350-fc8568509932b5903b5367c066a07603d3d438ea.tar.gz
scummvm-rg350-fc8568509932b5903b5367c066a07603d3d438ea.tar.bz2
scummvm-rg350-fc8568509932b5903b5367c066a07603d3d438ea.zip
Cleanup
svn-id: r29274
Diffstat (limited to 'engines/saga')
-rw-r--r--engines/saga/rscfile.cpp7
1 files changed, 1 insertions, 6 deletions
diff --git a/engines/saga/rscfile.cpp b/engines/saga/rscfile.cpp
index 87b4c53f18..ad3b1ce0fe 100644
--- a/engines/saga/rscfile.cpp
+++ b/engines/saga/rscfile.cpp
@@ -452,11 +452,6 @@ bool Resource::createContexts() {
sprintf(voicesFileName, "inherit the earth voices.cmp");
_vm->_gf_compressed_sounds = true;
}
- // 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
- if (!_vm->isBigEndian())
- voiceFileType = GAME_VOICEFILE | GAME_SWAPENDIAN; // This file is big endian
#else
} else if (Common::File::exists("\"inherit the earth voices\"") ||
Common::File::exists("\"inherit the earth voices.cmp\"")) {
@@ -469,12 +464,12 @@ bool Resource::createContexts() {
sprintf(voicesFileName, "\"inherit the earth voices.cmp\"");
_vm->_gf_compressed_sounds = true;
}
+#endif
// 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
if (!_vm->isBigEndian())
voiceFileType = GAME_VOICEFILE | GAME_SWAPENDIAN; // This file is big endian
-#endif
} else {
// No voice file found, don't add any file to the array
voicesFileInArray = true;