git: 9front

Download patch

ref: 99ef0a2f4f1064fe4773e14e1ac2250a6defbe34
parent: 3c94f448b4a1813197c261fa8db6dcc642c09eaf
author: aiju <devnull@localhost>
date: Wed Apr 1 18:16:52 EDT 2015

games/gba: remove debugging print

--- a/sys/src/games/gba/apu.c
+++ b/sys/src/games/gba/apu.c
@@ -169,7 +169,6 @@
 	if((cnt & 1<<3) != 0)
 		d = -d;
 	fr = sweepfreq + d;
-	print("%d %d %d\n", d, sweepfreq, fr);
 	if(fr > 2047){
 		sndch[0].len = 0;
 		sndch[0].vol = 0;
--