summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas White <taw@bitwiz.org.uk>2011-11-12 22:24:41 +0100
committerThomas White <taw@bitwiz.org.uk>2011-11-12 22:24:41 +0100
commitd71d1f504b983336063e5700987764cc705e4b75 (patch)
tree72cbd9cb09bb61a78a6ed49f631cddbcafa72e54
parent806700d86c1cffc621fe8196b88893089d8704b2 (diff)
Comment out volume, stereo and channel stuff
-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;