aboutsummaryrefslogtreecommitdiff
path: root/scumm/smush/smush_mixer.cpp
diff options
context:
space:
mode:
authorMax Horn2003-09-06 10:47:30 +0000
committerMax Horn2003-09-06 10:47:30 +0000
commit0be019601319c8536cf42a64e97408ba6fb1716b (patch)
tree47516a70382359f83871ad61b2e56700fd26aad6 /scumm/smush/smush_mixer.cpp
parentc951e5f8420c858b6253b05fecf362646c872c8a (diff)
downloadscummvm-rg350-0be019601319c8536cf42a64e97408ba6fb1716b.tar.gz
scummvm-rg350-0be019601319c8536cf42a64e97408ba6fb1716b.tar.bz2
scummvm-rg350-0be019601319c8536cf42a64e97408ba6fb1716b.zip
removed pauseMixer method from mixer, and renamed stop to stopChannel
svn-id: r10042
Diffstat (limited to 'scumm/smush/smush_mixer.cpp')
-rw-r--r--scumm/smush/smush_mixer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/smush/smush_mixer.cpp b/scumm/smush/smush_mixer.cpp
index 02dc117b29..a20b5e68a3 100644
--- a/scumm/smush/smush_mixer.cpp
+++ b/scumm/smush/smush_mixer.cpp
@@ -41,7 +41,7 @@ SmushMixer::SmushMixer(SoundMixer *m) :
SmushMixer::~SmushMixer() {
for (int32 i = 0; i < SoundMixer::NUM_CHANNELS; i++) {
- _mixer->stop(_channels[i].mixer_index);
+ _mixer->stopChannel(_channels[i].mixer_index);
}
}