aboutsummaryrefslogtreecommitdiff
path: root/sound/mixer.h
diff options
context:
space:
mode:
authorMax Horn2003-09-05 22:09:56 +0000
committerMax Horn2003-09-05 22:09:56 +0000
commit3aa8454efaf6674ceade07182ae8c4b2d7f12143 (patch)
tree6fe7d250458de6e52caf6b3cfdad770d92574f24 /sound/mixer.h
parent0045dfe9c61ccff708d4b93eaa699ea09cdec1aa (diff)
downloadscummvm-rg350-3aa8454efaf6674ceade07182ae8c4b2d7f12143.tar.gz
scummvm-rg350-3aa8454efaf6674ceade07182ae8c4b2d7f12143.tar.bz2
scummvm-rg350-3aa8454efaf6674ceade07182ae8c4b2d7f12143.zip
moved the sound ID param in playRaw before volume/pan
svn-id: r10023
Diffstat (limited to 'sound/mixer.h')
-rw-r--r--sound/mixer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/mixer.h b/sound/mixer.h
index 415c73b9b1..8fd7883418 100644
--- a/sound/mixer.h
+++ b/sound/mixer.h
@@ -90,7 +90,7 @@ public:
// start playing a raw sound
int playRaw(PlayingSoundHandle *handle, void *sound, uint32 size, uint rate, byte flags,
- byte volume = 255, int8 pan = 0, int id = -1, uint32 loopStart = 0, uint32 loopEnd = 0);
+ int id = -1, byte volume = 255, int8 pan = 0, uint32 loopStart = 0, uint32 loopEnd = 0);
#ifdef USE_MAD
int playMP3(PlayingSoundHandle *handle, File *file, uint32 size, byte volume = 255, int8 pan = 0);
int playMP3CDTrack(PlayingSoundHandle *handle, File *file, mad_timer_t duration, byte volume = 255, int8 pan = 0);