aboutsummaryrefslogtreecommitdiff
path: root/src/multiplex.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/multiplex.c')
-rw-r--r--src/multiplex.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/multiplex.c b/src/multiplex.c
index 05849ea..8fe5b58 100644
--- a/src/multiplex.c
+++ b/src/multiplex.c
@@ -63,9 +63,6 @@ static void *mux_new(t_symbol *s, int argc, t_atom *argv)
{
int n = (argc < 2)?2:argc;
t_mux *x = (t_mux *)pd_new(mux_class);
- // t_muxproxy *y=(t_muxproxy*)pd_new(muxproxy_class);
- ZEXY_USEVAR(s);
- ZEXY_USEVAR(argv);
x->i_selected=0;
x->i_count = n;
@@ -107,7 +104,7 @@ static void mux_free(t_mux*x){
freebytes(x->x_proxy, x->i_count * sizeof(t_muxproxy*));
}
- //pd_free(&y->p_pd)
+ /* pd_free(&y->p_pd); */
}
void multiplex_setup(void)