diff options
-rw-r--r-- | scumm/sound_he.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/sound_he.cpp b/scumm/sound_he.cpp index 1355b68aee..ddf8742789 100644 --- a/scumm/sound_he.cpp +++ b/scumm/sound_he.cpp @@ -438,7 +438,7 @@ void Sound::playHESound(int soundID, int heOffset, int heChannel, int heFlags) { _overrideFreq = 0; } - if (heFlags & 1) { + if ((heFlags & 1) || (heFlags & 4)) { flags |= Audio::Mixer::FLAG_LOOP; } |