summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--maestropond.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/maestropond.c b/maestropond.c
index 5681780..7fbbfc0 100644
--- a/maestropond.c
+++ b/maestropond.c
@@ -258,7 +258,7 @@ static size_t process_instrument_data(unsigned char *f, size_t ptr)
for ( i=0; i<8; i++ ) {
int ch, v;
ch = f[ptr++]; v = f[ptr++];
- printf("Channel %i, voice %i\n", ch+1, v);
+ //printf("Channel %i, voice %i\n", ch+1, v);
}
return ptr;
@@ -272,7 +272,7 @@ static size_t process_volume_data(unsigned char *f, size_t ptr)
for ( i=0; i<8; i++ ) {
int v;
v = f[ptr++];
- printf("Channel %i, volume %i\n", i+1, v);
+ //printf("Channel %i, volume %i\n", i+1, v);
}
return ptr;
@@ -286,7 +286,7 @@ static size_t process_stereo_data(unsigned char *f, size_t ptr)
for ( i=0; i<8; i++ ) {
int st;
st = f[ptr++];
- printf("Channel %i, stereo %i\n", i+1, st);
+ //printf("Channel %i, stereo %i\n", i+1, st);
}
return ptr;