diff options
-rw-r--r-- | sound.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; } |