aboutsummaryrefslogtreecommitdiff
path: root/scumm
diff options
context:
space:
mode:
authorPaweł Kołodziejski2004-01-08 18:32:29 +0000
committerPaweł Kołodziejski2004-01-08 18:32:29 +0000
commite68a3650594fc3a62a26aece5705eb3602b6d1ad (patch)
treedaacf4ba6c4403e1879a69329c334c158b91809f /scumm
parent7169da6ee18b90dd5f1a24d686fbabef0ef4e66a (diff)
downloadscummvm-rg350-e68a3650594fc3a62a26aece5705eb3602b6d1ad.tar.gz
scummvm-rg350-e68a3650594fc3a62a26aece5705eb3602b6d1ad.tar.bz2
scummvm-rg350-e68a3650594fc3a62a26aece5705eb3602b6d1ad.zip
ops
svn-id: r12261
Diffstat (limited to 'scumm')
-rw-r--r--scumm/imuse_digi/dimuse.h6
1 files changed, 3 insertions, 3 deletions
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"); }