aboutsummaryrefslogtreecommitdiff
path: root/graphics/animation.cpp
diff options
context:
space:
mode:
authorMax Horn2004-11-28 23:02:28 +0000
committerMax Horn2004-11-28 23:02:28 +0000
commit10dd548b854682d7a98bae91db7af4cc008db525 (patch)
tree6bd06307e62059e9d72162a1b27d6d23c9c01f91 /graphics/animation.cpp
parent61440ca8304efc2e375cc46bdc06f9028d785ce7 (diff)
downloadscummvm-rg350-10dd548b854682d7a98bae91db7af4cc008db525.tar.gz
scummvm-rg350-10dd548b854682d7a98bae91db7af4cc008db525.tar.bz2
scummvm-rg350-10dd548b854682d7a98bae91db7af4cc008db525.zip
Changed parameter order of SoundMixer::playInputStream to match that of playRaw
svn-id: r15950
Diffstat (limited to 'graphics/animation.cpp')
-rw-r--r--graphics/animation.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/graphics/animation.cpp b/graphics/animation.cpp
index 2ce89fc838..ff0968e18a 100644
--- a/graphics/animation.cpp
+++ b/graphics/animation.cpp
@@ -133,7 +133,7 @@ bool BaseAnimationState::init(const char *name) {
bgSoundStream = AudioStream::openStreamFile(name);
if (bgSoundStream != NULL) {
- _snd->playInputStream(&bgSound, bgSoundStream, false, 255, 0, -1, false);
+ _snd->playInputStream(&bgSound, bgSoundStream, false, -1, 255, 0, false);
} else {
warning("Cutscene: Could not open Audio Track for %s", name);
}