[Scummvm-cvs-logs] SF.net SVN: scummvm:[46562] scummvm/trunk/engines/sci/sfx/soundcmd.cpp

sev at users.sourceforge.net sev at users.sourceforge.net
Fri Dec 25 19:37:07 CET 2009


Revision: 46562
          http://scummvm.svn.sourceforge.net/scummvm/?rev=46562&view=rev
Author:   sev
Date:     2009-12-25 18:37:07 +0000 (Fri, 25 Dec 2009)

Log Message:
-----------
Remove extra debug output which sneaked in.

Modified Paths:
--------------
    scummvm/trunk/engines/sci/sfx/soundcmd.cpp

Modified: scummvm/trunk/engines/sci/sfx/soundcmd.cpp
===================================================================
--- scummvm/trunk/engines/sci/sfx/soundcmd.cpp	2009-12-25 18:25:15 UTC (rev 46561)
+++ scummvm/trunk/engines/sci/sfx/soundcmd.cpp	2009-12-25 18:37:07 UTC (rev 46562)
@@ -101,21 +101,18 @@
 		case SI_RELATIVE_CUE:
 			debugC(2, kDebugLevelSound, "[process-sound] Song %04x:%04x received relative cue %d\n",
 			          PRINT_REG(obj), cue);
-			debugC(2, kDebugLevelSound, "rel-signal %04X\n", cue + 0x7f);
 			PUT_SEL32V(segMan, obj, signal, cue + 0x7f);
 			break;
 
 		case SI_ABSOLUTE_CUE:
 			debugC(2, kDebugLevelSound, "[process-sound] Song %04x:%04x received absolute cue %d\n",
 			          PRINT_REG(obj), cue);
-			debugC(2, kDebugLevelSound, "abs-signal %04X\n", cue);
 			PUT_SEL32V(segMan, obj, signal, cue);
 			break;
 
 		case SI_FINISHED:
 			debugC(2, kDebugLevelSound, "[process-sound] Song %04x:%04x finished\n",
 			          PRINT_REG(obj));
-			printf("signal 0xFFFF\n");
 			PUT_SEL32V(segMan, obj, signal, SIGNAL_OFFSET);
 			PUT_SEL32V(segMan, obj, state, kSndStatusStopped);
 			break;


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list