aboutsummaryrefslogtreecommitdiff
path: root/sound/mixer.h
diff options
context:
space:
mode:
authorMax Horn2004-11-28 23:02:28 +0000
committerMax Horn2004-11-28 23:02:28 +0000
commit10dd548b854682d7a98bae91db7af4cc008db525 (patch)
tree6bd06307e62059e9d72162a1b27d6d23c9c01f91 /sound/mixer.h
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 'sound/mixer.h')
-rw-r--r--sound/mixer.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/sound/mixer.h b/sound/mixer.h
index b071c7b293..2f9d5713a3 100644
--- a/sound/mixer.h
+++ b/sound/mixer.h
@@ -126,12 +126,15 @@ public:
* passed on to playInputStream.
*/
void playRaw(PlayingSoundHandle *handle, void *sound, uint32 size, uint rate, byte flags,
- int id = -1, byte volume = 255, int8 balance = 0, uint32 loopStart = 0, uint32 loopEnd = 0);
+ int id = -1, byte volume = 255, int8 balance = 0,
+ uint32 loopStart = 0, uint32 loopEnd = 0);
/**
* Start playing the given audio input stream.
*/
- void playInputStream(PlayingSoundHandle *handle, AudioStream *input, bool isMusic, byte volume = 255, int8 balance = 0, int id = -1, bool autofreeStream = true, bool permanent = false);
+ void playInputStream(PlayingSoundHandle *handle, AudioStream *input, bool isMusic,
+ int id = -1, byte volume = 255, int8 balance = 0,
+ bool autofreeStream = true, bool permanent = false);