aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStrangerke2012-09-25 22:09:42 +0200
committerStrangerke2012-09-25 22:09:42 +0200
commitc61effaff9b5636086204f5e40710feaca1197b8 (patch)
tree79e3060be2a7fbb46cc9e0ec873cfbb044390a6f
parentc18cacc248c062ae3ef3697a516ce135deb4ad14 (diff)
downloadscummvm-rg350-c61effaff9b5636086204f5e40710feaca1197b8.tar.gz
scummvm-rg350-c61effaff9b5636086204f5e40710feaca1197b8.tar.bz2
scummvm-rg350-c61effaff9b5636086204f5e40710feaca1197b8.zip
TONY: Use debug channel for fading messages
-rw-r--r--engines/tony/custom.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/tony/custom.cpp b/engines/tony/custom.cpp
index 8f260c4f06..7bca40b850 100644
--- a/engines/tony/custom.cpp
+++ b/engines/tony/custom.cpp
@@ -2024,7 +2024,7 @@ void threadFadeInMusic(CORO_PARAM, const void *nMusic) {
CORO_BEGIN_CODE(_ctx);
- debug("Start FadeIn Music");
+ debugC(DEBUG_INTERMEDIATE, kTonyDebugSound, "Start FadeIn Music");
for (_ctx->i = 0; _ctx->i < 16; _ctx->i++) {
g_vm->setMusicVolume(nChannel, _ctx->i * 4);
@@ -2033,7 +2033,7 @@ void threadFadeInMusic(CORO_PARAM, const void *nMusic) {
}
g_vm->setMusicVolume(nChannel, 64);
- debug("End FadeIn Music");
+ debugC(DEBUG_INTERMEDIATE, kTonyDebugSound, "End FadeIn Music");
CORO_KILL_SELF();