From bbb954759df3831088f0cd3d94bf104df7e2bf53 Mon Sep 17 00:00:00 2001 From: Jamie Bullock Date: Thu, 16 Feb 2006 11:22:12 +0000 Subject: Stopped configure buffer printing to console svn path=/trunk/externals/postlude/; revision=4593 --- dssi/src/dssi~.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/dssi/src/dssi~.c b/dssi/src/dssi~.c index a25aa22..413b882 100644 --- a/dssi/src/dssi~.c +++ b/dssi/src/dssi~.c @@ -1149,14 +1149,16 @@ static t_int dssi_configure_buffer(t_dssi_tilde *x, char *key, p = x->configure_buffer_head; - + +/*FIX: eventually give ability to query this buffer (to outlet?) */ +#if DEBUG while(p){ post("key: %s", p->key); post("val: %s", p->value); post("instance: %d", p->instance); p = p->next; } - +#endif return 0; } @@ -1466,7 +1468,6 @@ static t_int dssi_config(t_dssi_tilde *x, t_symbol *s, int argc, t_atom *argv) { if(key != NULL && value != NULL){ if(instance == -1){ while(n_instances--){ - post("instance = %d, n_instaances = %d",instance, n_instances); debug = dssi_send_configure( x, key, value, n_instances); dssi_configure_buffer(x, key, value, n_instances); -- cgit v1.2.1