From fed569060c1f10dc85302caa518fcdbcabef000a Mon Sep 17 00:00:00 2001 From: Thomas O Fredericks Date: Mon, 11 Oct 2010 19:00:24 +0000 Subject: Fixed a fix in updating the gui when it was created by param gui. param route also changes empty messages into bangs svn path=/trunk/externals/tof/; revision=14225 --- src/param.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/param.c') diff --git a/src/param.c b/src/param.c index fc8a152..733f40f 100644 --- a/src/param.c +++ b/src/param.c @@ -110,9 +110,9 @@ static void paramClass_anything(t_paramClass *x, t_symbol *s, int ac, t_atom *av #ifdef PARAMDEBUG post("RECEIVING SOMETHING"); #endif - if ( s == &s_bang || ac == 0 ) { + if ( s == &s_bang || ac == 0 ) { x->ac = 0; - x->selector = s; + x->selector = &s_bang; } else { if(ac > x->alloc) { x->av = resizebytes(x->av, x->alloc*sizeof(*(x->av)), -- cgit v1.2.1