aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sound.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/sound.cpp b/sound.cpp
index 0c7dde35b5..718c7c61f9 100644
--- a/sound.cpp
+++ b/sound.cpp
@@ -755,13 +755,13 @@ 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_UNSIGNED|SoundMixer::FLAG_AUTOFREE);
+ _mixer->play_raw(NULL, CompFinal, finalSize,22050, SoundMixer::FLAG_AUTOFREE|SoundMixer::FLAG_UNSIGNED);
}
void Scumm::playBundleSound(char *sound)
{
for (int i=0; i < num_sound_effects; i++) {
- if (!stricmp(sound, bundle_table[i].filename)) {
+ if (!scumm_stricmp(sound, bundle_table[i].filename)) {
decompressBundleSound(i);
return;
}