aboutsummaryrefslogtreecommitdiff
path: root/fmdriver/ppz8.c
diff options
context:
space:
mode:
authorTakamichi Horikawa <takamichiho@gmail.com>2017-02-19 19:57:25 +0900
committerTakamichi Horikawa <takamichiho@gmail.com>2017-02-19 19:57:25 +0900
commit8efbfa68b4a438f215dfeec716b7a13e1f9b844b (patch)
treec78b03ca240a03ba2bb8c9c7e6d90aa34646ca12 /fmdriver/ppz8.c
parentd78900cd1497441d7712805b08072e46ee361ff8 (diff)
forgot to remove debugging fprintf
Diffstat (limited to 'fmdriver/ppz8.c')
-rw-r--r--fmdriver/ppz8.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fmdriver/ppz8.c b/fmdriver/ppz8.c
index 8838367..a373d84 100644
--- a/fmdriver/ppz8.c
+++ b/fmdriver/ppz8.c
@@ -1,6 +1,6 @@
#include "ppz8.h"
#include "fmdriver_common.h"
-#include <stdio.h>
+//#include <stdio.h>
void ppz8_init(struct ppz8 *ppz8, uint16_t srate, uint16_t mix_volume) {
for (int i = 0; i < 2; i++) {
@@ -270,7 +270,7 @@ static void ppz8_channel_loopoffset(struct ppz8 *ppz8, uint8_t ch,
struct ppz8_channel *channel = &ppz8->channel[ch];
channel->loopstartoff = startoff;
channel->loopendoff = endoff;
- fprintf(stderr, "channel: %d, start: %08x, end: %08x\n", ch, startoff, endoff);
+// fprintf(stderr, "channel: %d, start: %08x, end: %08x\n", ch, startoff, endoff);
}
static void ppz8_channel_pan(struct ppz8 *ppz8, uint8_t ch, uint8_t pan) {