[Scummvm-cvs-logs] scummvm master -> c61effaff9b5636086204f5e40710feaca1197b8

Strangerke Strangerke at scummvm.org
Tue Sep 25 22:10:50 CEST 2012


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
c61effaff9 TONY: Use debug channel for fading messages


Commit: c61effaff9b5636086204f5e40710feaca1197b8
    https://github.com/scummvm/scummvm/commit/c61effaff9b5636086204f5e40710feaca1197b8
Author: Strangerke (strangerke at scummvm.org)
Date: 2012-09-25T13:09:42-07:00

Commit Message:
TONY: Use debug channel for fading messages

Changed paths:
    engines/tony/custom.cpp



diff --git a/engines/tony/custom.cpp b/engines/tony/custom.cpp
index 8f260c4..7bca40b 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();
 






More information about the Scummvm-git-logs mailing list