diff options
author | Max Horn | 2003-06-22 01:33:03 +0000 |
---|---|---|
committer | Max Horn | 2003-06-22 01:33:03 +0000 |
commit | 046dd1cfc8733c3a4c1de1e898a371499cc49416 (patch) | |
tree | ce781ad04f4e32f4882bd669417ddcbb704e632e /scumm/smush | |
parent | bd4370c25166ad0e49c78d9e4407d39358e17b91 (diff) | |
download | scummvm-rg350-046dd1cfc8733c3a4c1de1e898a371499cc49416.tar.gz scummvm-rg350-046dd1cfc8733c3a4c1de1e898a371499cc49416.tar.bz2 scummvm-rg350-046dd1cfc8733c3a4c1de1e898a371499cc49416.zip |
fix regression I just introduced (voices in smush movies were cut off way too early)
svn-id: r8595
Diffstat (limited to 'scumm/smush')
-rw-r--r-- | scumm/smush/smush_mixer.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/scumm/smush/smush_mixer.cpp b/scumm/smush/smush_mixer.cpp index f75fd92881..7f2dba979a 100644 --- a/scumm/smush/smush_mixer.cpp +++ b/scumm/smush/smush_mixer.cpp @@ -106,10 +106,6 @@ bool SmushMixer::handleFrame() { for (int i = 0; i < SoundMixer::NUM_CHANNELS; i++) { if (_channels[i].id != -1) { if (_channels[i].chan->isTerminated()) { - if (_channels[i].mixer_index != -1) { - _mixer->stop(_channels[i].mixer_index); - _channels[i].mixer_index = -1; - } delete _channels[i].chan; _channels[i].id = -1; _channels[i].chan = NULL; |