aboutsummaryrefslogtreecommitdiff
path: root/backends/midi
diff options
context:
space:
mode:
authorTravis Howell2003-08-13 12:16:42 +0000
committerTravis Howell2003-08-13 12:16:42 +0000
commit124650e0739ca5c3697ec30cfbb31e227228bade (patch)
tree947ea8d830c9aade9523f632d9fa8264e791ebc7 /backends/midi
parent603f8b8e3aa8128ffbc5c0cb32cd32b0105fedb5 (diff)
downloadscummvm-rg350-124650e0739ca5c3697ec30cfbb31e227228bade.tar.gz
scummvm-rg350-124650e0739ca5c3697ec30cfbb31e227228bade.tar.bz2
scummvm-rg350-124650e0739ca5c3697ec30cfbb31e227228bade.zip
Remove debug code that shouldn't have been commit
svn-id: r9655
Diffstat (limited to 'backends/midi')
-rw-r--r--backends/midi/adlib.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/backends/midi/adlib.cpp b/backends/midi/adlib.cpp
index 3c6cef3fd6..e4c5fe0df0 100644
--- a/backends/midi/adlib.cpp
+++ b/backends/midi/adlib.cpp
@@ -644,12 +644,10 @@ void AdlibPart::send (uint32 b) {
}
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::premix_proc(void *param, int16 *buf, uint len) {
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);