diff options
author | Paweł Kołodziejski | 2002-08-23 20:27:42 +0000 |
---|---|---|
committer | Paweł Kołodziejski | 2002-08-23 20:27:42 +0000 |
commit | 0a520b237b1b545f6e3227b89f4825b0820e2c7a (patch) | |
tree | 0637913808f5883a2273b00979c4353861747c31 | |
parent | 1bf20ac0c3fb90b6e1376be719a287e9851f9efb (diff) | |
download | scummvm-rg350-0a520b237b1b545f6e3227b89f4825b0820e2c7a.tar.gz scummvm-rg350-0a520b237b1b545f6e3227b89f4825b0820e2c7a.tar.bz2 scummvm-rg350-0a520b237b1b545f6e3227b89f4825b0820e2c7a.zip |
fix for music loop, I think :)
svn-id: r4804
-rw-r--r-- | sound/sound.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/sound.cpp b/sound/sound.cpp index 69bdfc8143..a096774842 100644 --- a/sound/sound.cpp +++ b/sound/sound.cpp @@ -977,8 +977,8 @@ void Sound::bundleMusicHandler(Scumm * scumm) { } } - if (l == num) - l = 0; + if (_currentSampleBundleMusic == num) + _currentSampleBundleMusic = 0; size = OUTPUT_SIZE; ptr = _musicBundleBufFinal; |