From e68a3650594fc3a62a26aece5705eb3602b6d1ad Mon Sep 17 00:00:00 2001 From: Paweł Kołodziejski Date: Thu, 8 Jan 2004 18:32:29 +0000 Subject: ops svn-id: r12261 --- scumm/imuse_digi/dimuse.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'scumm/imuse_digi') diff --git a/scumm/imuse_digi/dimuse.h b/scumm/imuse_digi/dimuse.h index 497fefc82f..d4260a333b 100644 --- a/scumm/imuse_digi/dimuse.h +++ b/scumm/imuse_digi/dimuse.h @@ -87,13 +87,13 @@ public: void startVoice(int soundId) { debug(5, "startVoiceBundle(%d)", soundId); startSound(soundId, NULL, IMUSE_BUNDLE, IMUSE_VOICE, NULL); } void startVoice(int soundId, const char *soundName) - { return;}//debug(5, "startVoiceBundle(%s)", soundName); startSound(soundId, soundName, IMUSE_BUNDLE, IMUSE_VOICE, NULL); } + { debug(5, "startVoiceBundle(%s)", soundName); startSound(soundId, soundName, IMUSE_BUNDLE, IMUSE_VOICE, NULL); } void startMusic(int soundId) { debug(5, "startMusicResource(%d)", soundId); startSound(soundId, NULL, IMUSE_RESOURCE, IMUSE_MUSIC, NULL); } void startMusic(const char *soundName, int soundId) - { debug(0, "startMusicBundle(%s)", soundName); startSound(soundId, soundName, IMUSE_BUNDLE, IMUSE_MUSIC, NULL); } + { debug(5, "startMusicBundle(%s)", soundName); startSound(soundId, soundName, IMUSE_BUNDLE, IMUSE_MUSIC, NULL); } void startSfx(int soundId) - { return;}//debug(5, "startSfx(%d)", soundId); startSound(soundId, NULL, IMUSE_RESOURCE, IMUSE_SFX, NULL); } + { debug(5, "startSfx(%d)", soundId); startSound(soundId, NULL, IMUSE_RESOURCE, IMUSE_SFX, NULL); } void startSound(int soundId) { error("MusicEngine::startSound() Should be never called"); } -- cgit v1.2.3