From c61effaff9b5636086204f5e40710feaca1197b8 Mon Sep 17 00:00:00 2001 From: Strangerke Date: Tue, 25 Sep 2012 22:09:42 +0200 Subject: [PATCH] TONY: Use debug channel for fading messages --- engines/tony/custom.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/engines/tony/custom.cpp b/engines/tony/custom.cpp index 8f260c4f064..7bca40b8506 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();