diff options
Diffstat (limited to 'scumm')
-rw-r--r-- | scumm/sound.cpp | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/scumm/sound.cpp b/scumm/sound.cpp index f886171416..ca8ed4303f 100644 --- a/scumm/sound.cpp +++ b/scumm/sound.cpp @@ -353,13 +353,8 @@ void Sound::playSound(int soundID) { } size -= waveSize; - if (loopEnd > 0) { + if (loopEnd > 0) flags |= SoundMixer::FLAG_LOOP; - if ((loopEnd < waveSize) || (loopStart > 0)) { - // FIXME: Test partial loops - warning("Partial loops now are implemented. Loop at 0x%X thru 0x%X - does it sound right?", loopStart, loopEnd); - } - } _scumm->_mixer->playRaw(NULL, sound, waveSize, rate, flags, soundID, 255, 0, loopStart, loopEnd); } |