aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Brown2002-04-16 04:34:35 +0000
committerJames Brown2002-04-16 04:34:35 +0000
commit6cb3d8fe1b9e6757fa1a783de2fbb7ad6bbe65c2 (patch)
treed5c07cafdc6c145ab4abbdea071e8fb31a896107
parent5614fb70c6b6e79f901b34642df5d3be0a713516 (diff)
downloadscummvm-rg350-6cb3d8fe1b9e6757fa1a783de2fbb7ad6bbe65c2.tar.gz
scummvm-rg350-6cb3d8fe1b9e6757fa1a783de2fbb7ad6bbe65c2.tar.bz2
scummvm-rg350-6cb3d8fe1b9e6757fa1a783de2fbb7ad6bbe65c2.zip
Make CVS compile again. BBrox, you put a call to play_mp3.. but forgot to
add the function! svn-id: r3952
-rw-r--r--sound.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/sound.cpp b/sound.cpp
index 36d6febf51..8f40db9451 100644
--- a/sound.cpp
+++ b/sound.cpp
@@ -584,5 +584,6 @@ void Scumm::playSfxSound(void *sound, uint32 size, uint rate)
void Scumm::playSfxSound_MP3(void *sound, uint32 size)
{
- _mixer->play_mp3(NULL, sound, size, SoundMixer::FLAG_AUTOFREE);
+ /* BBrox: Fix this... There -is- no play_mp3 function :) */
+// _mixer->play_mp3(NULL, sound, size, SoundMixer::FLAG_AUTOFREE);
}