diff options
Diffstat (limited to 'scumm')
-rw-r--r-- | scumm/sound.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scumm/sound.cpp b/scumm/sound.cpp index 72ba1f9c1e..48c14640ee 100644 --- a/scumm/sound.cpp +++ b/scumm/sound.cpp @@ -418,12 +418,12 @@ void Sound::playSound(int soundID) { if (loopEnd > 0) { flags |= SoundMixer::FLAG_LOOP; if ((loopEnd < waveSize) || (loopStart > 0)) { - // FIXME: Implement partial loops - warning("Partial loops not implemented. Loop at 0x%X thru 0x%X", loopStart, loopEnd); + // 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); + _scumm->_mixer->playRaw(NULL, sound, waveSize, rate, flags, soundID, loopStart, loopEnd); } break; } |