diff --git a/scumm/sound.cpp b/scumm/sound.cpp index 7c937cf5385..8ad7775417d 100644 --- a/scumm/sound.cpp +++ b/scumm/sound.cpp @@ -341,7 +341,7 @@ void Sound::playSound(int soundID, int offset) { memcpy(sound, ptr + 6, size); _vm->_mixer->playRaw(NULL, sound, size, rate, flags, soundID); } - else if ((_vm->_features & GF_FMTOWNS) || READ_UINT32(ptr) == MKID('SOUN') || READ_UINT32(ptr) == MKID('TOWS')) { + else if ((_vm->_features & GF_FMTOWNS && _vm->_version == 3) || READ_UINT32(ptr) == MKID('SOUN') || READ_UINT32(ptr) == MKID('TOWS')) { bool tows = READ_UINT32(ptr) == MKID('TOWS'); if (_vm->_version == 3) {