[Scummvm-cvs-logs] scummvm master -> 0ba17d909a0f816e1d48d0aa4972a719329d748d

wjp wjp at usecode.org
Sun May 25 13:00:12 CEST 2014


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:
0ba17d909a SCI: Make debugging output conditional


Commit: 0ba17d909a0f816e1d48d0aa4972a719329d748d
    https://github.com/scummvm/scummvm/commit/0ba17d909a0f816e1d48d0aa4972a719329d748d
Author: Willem Jan Palenstijn (wjp at usecode.org)
Date: 2014-05-25T12:59:39+02:00

Commit Message:
SCI: Make debugging output conditional

Changed paths:
    engines/sci/sound/music.cpp



diff --git a/engines/sci/sound/music.cpp b/engines/sci/sound/music.cpp
index 606d813..933dc06 100644
--- a/engines/sci/sound/music.cpp
+++ b/engines/sci/sound/music.cpp
@@ -1172,7 +1172,9 @@ ChannelRemapping *SciMusic::determineChannelMap() {
 			if (map->_freeVoices < neededVoices) {
 				// We only care for essential channels
 				if (prio > 0) {
+#ifdef DEBUG_REMAP
 					debug("   not enough voices; need %d, have %d. Skipping this channel.", neededVoices, map->_freeVoices);
+#endif
 					continue;
 				}
 				do {






More information about the Scummvm-git-logs mailing list