aboutsummaryrefslogtreecommitdiff
path: root/sound.cpp
diff options
context:
space:
mode:
authorJames Brown2002-04-29 08:37:11 +0000
committerJames Brown2002-04-29 08:37:11 +0000
commiteefae397da6ab4d21fe8d85ce2bf96286e0d771c (patch)
treee4e06d6bca3d740a8125159f370681ad0b31410e /sound.cpp
parent58334a8f8fc5d00cf9c98d0780d97c687f64b011 (diff)
downloadscummvm-rg350-eefae397da6ab4d21fe8d85ce2bf96286e0d771c.tar.gz
scummvm-rg350-eefae397da6ab4d21fe8d85ce2bf96286e0d771c.tar.bz2
scummvm-rg350-eefae397da6ab4d21fe8d85ce2bf96286e0d771c.zip
Oops, bundle audio is UNSIGNED.
svn-id: r4131
Diffstat (limited to 'sound.cpp')
-rw-r--r--sound.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound.cpp b/sound.cpp
index 632c1c58aa..a8628f0e12 100644
--- a/sound.cpp
+++ b/sound.cpp
@@ -754,7 +754,7 @@ void Scumm::decompressBundleSound(int index) {
/* FIXME: This is nasty. We are actually sending the whole
decompressed packet to the mixer.. but the packet
actually contains further subblocks! (eg, sync) */
- _mixer->play_raw(NULL, CompFinal, finalSize,22050, SoundMixer::FLAG_AUTOFREE);
+ _mixer->play_raw(NULL, CompFinal, finalSize,22050, SoundMixer::FLAG_UNSIGNED|SoundMixer::FLAG_AUTOFREE);
}
void Scumm::playBundleSound(char *sound)