[Scummvm-cvs-logs] CVS: scummvm/backends/midi adlib.cpp,1.44,1.45

Travis Howell kirben at users.sourceforge.net
Wed Aug 13 05:45:05 CEST 2003


Update of /cvsroot/scummvm/scummvm/backends/midi
In directory sc8-pr-cvs1:/tmp/cvs-serv15610/midi

Modified Files:
	adlib.cpp 
Log Message:

Remove debug code that shouldn't have been commit


Index: adlib.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/backends/midi/adlib.cpp,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -d -r1.44 -r1.45
--- adlib.cpp	12 Aug 2003 16:09:40 -0000	1.44
+++ adlib.cpp	13 Aug 2003 12:16:42 -0000	1.45
@@ -644,12 +644,10 @@
 }
 
 void AdlibPart::noteOff(byte note) {
-  debug (4, "%10d: noteOff(%d)", tick, note);
 	_owner->part_key_off(this, note);
 }
 
 void AdlibPart::noteOn(byte note, byte velocity) {
-  debug (4, "%10d: noteOn(%d,%d)", tick, note, velocity);
 	_owner->part_key_on(this, &_part_instr, note, velocity);
 }
 
@@ -984,7 +982,6 @@
 void MidiDriver_ADLIB::adlib_write(byte port, byte value) {
 	if (_adlib_reg_cache[port] == value)
 		return;
-  debug (4, "%10d: adlib_write[%x] = %x", tick, port, value);
 	_adlib_reg_cache[port] = value;
 
 	OPLWriteReg(_opl, port, value);





More information about the Scummvm-git-logs mailing list