aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJamie Bullock <postlude@users.sourceforge.net>2006-02-16 11:22:12 +0000
committerJamie Bullock <postlude@users.sourceforge.net>2006-02-16 11:22:12 +0000
commitbbb954759df3831088f0cd3d94bf104df7e2bf53 (patch)
tree3e61f6e0a4a3b3b8f22309cf5e6dedec4b4ec763
parent85994b2801d0f43e135a90395d4ab8b31f6c44a2 (diff)
Stopped configure buffer printing to console
svn path=/trunk/externals/postlude/; revision=4593
-rw-r--r--dssi/src/dssi~.c7
1 files 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);