From 10dd548b854682d7a98bae91db7af4cc008db525 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Sun, 28 Nov 2004 23:02:28 +0000 Subject: Changed parameter order of SoundMixer::playInputStream to match that of playRaw svn-id: r15950 --- sound/mixer.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'sound/mixer.h') 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); -- cgit v1.2.3