From f2af1c9a07125f7db9edf8d836fcab06a4d06a8d Mon Sep 17 00:00:00 2001 From: tildearrow Date: Thu, 27 May 2021 23:34:54 -0500 Subject: [PATCH] remove some debug messages --- src/engine/platform/gb.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/engine/platform/gb.cpp b/src/engine/platform/gb.cpp index 283e77a45..81504f00d 100644 --- a/src/engine/platform/gb.cpp +++ b/src/engine/platform/gb.cpp @@ -14,7 +14,6 @@ void DivPlatformGB::acquire(int& l, int& r) { } void DivPlatformGB::updateWave() { - printf("updating wave: %d\n",chan[2].wave); DivWavetable* wt=parent->getWave(chan[2].wave); rWrite(0x1a,0); for (int i=0; i<16; i++) { @@ -128,7 +127,6 @@ void DivPlatformGB::tick() { rWrite(16+i*5+4,((chan[i].keyOn||chan[i].keyOff)?0x80:0x00)|((ins->gb.soundLen<64)<<6)); } else { rWrite(16+i*5+3,(2048-chan[i].freq)&0xff); - printf("writing trigger kon %d\n",chan[i].keyOn); rWrite(16+i*5+4,(((2048-chan[i].freq)>>8)&7)|((chan[i].keyOn||chan[i].keyOff)?0x80:0x00)|((ins->gb.soundLen<63)<<6)); } if (chan[i].keyOn) chan[i].keyOn=false;