From e95048d6e93230431af3a9d6a1bc5ae1a363b228 Mon Sep 17 00:00:00 2001 From: Brad Grantham Date: Tue, 6 Dec 2016 18:58:25 -0800 Subject: [PATCH] remove printf in waveform initialization --- apple2e.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/apple2e.cpp b/apple2e.cpp index a31cfe8..785223d 100644 --- a/apple2e.cpp +++ b/apple2e.cpp @@ -462,7 +462,6 @@ void initialize_audio_waveform() float theta = (float(i) / (waveform_length - 1) -.5f) * M_PI; waveform[i] = 127.5 + waveform_max_amplitude * 127.5 * sin(theta); - printf("%d: %d\n", i, waveform[i]); } }