diff options
Diffstat (limited to 'sound/voc.cpp')
-rw-r--r-- | sound/voc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/voc.cpp b/sound/voc.cpp index 726b555a79..2c235c05ca 100644 --- a/sound/voc.cpp +++ b/sound/voc.cpp @@ -154,7 +154,7 @@ AudioStream *makeVOCStream(Common::ReadStream &stream) { if (!data) return 0; - return makeLinearInputStream(rate, Audio::Mixer::FLAG_AUTOFREE | Audio::Mixer::FLAG_UNSIGNED, data, size, 0, 0); + return makeLinearInputStream(data, size, rate, Audio::Mixer::FLAG_AUTOFREE | Audio::Mixer::FLAG_UNSIGNED, 0, 0); } |