diff options
author | Jamie Bullock <jamie@postlude.co.uk> | 2007-02-12 17:11:31 +0000 |
---|---|---|
committer | Jamie Bullock <jamie@postlude.co.uk> | 2007-02-12 17:11:31 +0000 |
commit | fee193c31a1b1b8cb179413c6fb7f9dc568e756c (patch) | |
tree | ea577d828c45d32623f9b43a6278ccf725e4aa42 /examples | |
parent | 27eb133e2a213747af105655bf286891e0d69f1e (diff) | |
download | LibXtract-fee193c31a1b1b8cb179413c6fb7f9dc568e756c.tar.gz LibXtract-fee193c31a1b1b8cb179413c6fb7f9dc568e756c.tar.bz2 LibXtract-fee193c31a1b1b8cb179413c6fb7f9dc568e756c.zip |
Various minor fixes
Diffstat (limited to 'examples')
-rw-r--r-- | examples/puredata/xtract~.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/puredata/xtract~.c b/examples/puredata/xtract~.c index df74ce7..a769bdc 100644 --- a/examples/puredata/xtract~.c +++ b/examples/puredata/xtract~.c @@ -140,7 +140,7 @@ static void *xtract_new(t_symbol *me, t_int argc, t_atom *argv) { if(n_args){ for(n = 0; n < n_args; n++){ argv_max = &fd[f].argv.max[n]; - post("Argument %d, max: %.2f", n, *argv_max); + //post("Argument %d, max: %.2f", n, *argv_max); } if(type == XTRACT_MEL_FILTER){ x->memory.argv = (size_t)(n_args * sizeof(xtract_mel_filter)); |