mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-10 20:01:25 +00:00
fixed if check
svn-id: r9962
This commit is contained in:
parent
1f29e0416c
commit
f59a0633d6
@ -466,7 +466,7 @@ void Sound::playSound(int soundID) {
|
||||
memcpy(sound,ptr + start,size);
|
||||
|
||||
// Experimental sound looping support
|
||||
if (start == 108 | start == 106)
|
||||
if (start == 108 || start == 106)
|
||||
_scumm->_mixer->playRaw(NULL, sound, size, rate,
|
||||
SoundMixer::FLAG_AUTOFREE | SoundMixer::FLAG_LOOP, 127, 0, soundID,
|
||||
start,size);
|
||||
|
Loading…
Reference in New Issue
Block a user