mirror of
https://github.com/scummvm/scummvm.git
synced 2026-06-20 05:45:29 +00:00
Missed a spot
svn-id: r14660
This commit is contained in:
+1
-1
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user