aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaweł Kołodziejski2004-01-06 17:47:45 +0000
committerPaweł Kołodziejski2004-01-06 17:47:45 +0000
commitdb5f44a8740d17f7a06f4a6e31313537e0cf94e9 (patch)
treeed0a77efa956a63b5bb1ff89ce34f648095a9ef8
parentb975f37043a338cedcc56dbfbaaf64793ef13417 (diff)
downloadscummvm-rg350-db5f44a8740d17f7a06f4a6e31313537e0cf94e9.tar.gz
scummvm-rg350-db5f44a8740d17f7a06f4a6e31313537e0cf94e9.tar.bz2
scummvm-rg350-db5f44a8740d17f7a06f4a6e31313537e0cf94e9.zip
increased debug level
svn-id: r12190
-rw-r--r--scumm/imuse_digi/dimuse.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/scumm/imuse_digi/dimuse.h b/scumm/imuse_digi/dimuse.h
index cb2ba02d1b..5d093920c7 100644
--- a/scumm/imuse_digi/dimuse.h
+++ b/scumm/imuse_digi/dimuse.h
@@ -82,17 +82,17 @@ public:
~IMuseDigital();
void startVoice(int soundId, AudioStream *input)
- { debug(0, "startVoiceStream(%d)", soundId); startSound(soundId, NULL, 0, IMUSE_VOICE, input); }
+ { debug(5, "startVoiceStream(%d)", soundId); startSound(soundId, NULL, 0, IMUSE_VOICE, input); }
void startVoice(int soundId)
- { debug(0, "startVoiceBundle(%d)", soundId); startSound(soundId, NULL, IMUSE_BUNDLE, IMUSE_VOICE, NULL); }
+ { debug(5, "startVoiceBundle(%d)", soundId); startSound(soundId, NULL, IMUSE_BUNDLE, IMUSE_VOICE, NULL); }
void startVoice(int soundId, char *soundName)
- { debug(0, "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(0, "startMusicResource(%d)", soundId); startSound(soundId, NULL, IMUSE_RESOURCE, IMUSE_MUSIC, NULL); }
+ { debug(5, "startMusicResource(%d)", soundId); startSound(soundId, NULL, IMUSE_RESOURCE, IMUSE_MUSIC, NULL); }
void startMusic(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)
- { debug(0, "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"); }