aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--scumm/sound.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/sound.cpp b/scumm/sound.cpp
index a0257b3fbf..7c937cf538 100644
--- a/scumm/sound.cpp
+++ b/scumm/sound.cpp
@@ -344,7 +344,7 @@ void Sound::playSound(int soundID, int offset) {
else if ((_vm->_features & GF_FMTOWNS) || READ_UINT32(ptr) == MKID('SOUN') || READ_UINT32(ptr) == MKID('TOWS')) {
bool tows = READ_UINT32(ptr) == MKID('TOWS');
- if (_vm->_features & GF_FMTOWNS) {
+ if (_vm->_version == 3) {
size = READ_LE_UINT32(ptr);
} else {
size = READ_BE_UINT32(ptr + 4) - 2;