From 9728c280040625fd4eff572b71b3cb6c8495206b Mon Sep 17 00:00:00 2001 From: Thomas O Fredericks Date: Wed, 7 Oct 2009 20:06:41 +0000 Subject: fixed a problem having to do with absolute and relative paths svn path=/trunk/externals/tof/; revision=12555 --- src/paramCustom.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/paramCustom.c') diff --git a/src/paramCustom.c b/src/paramCustom.c index 834b32f..20144ba 100644 --- a/src/paramCustom.c +++ b/src/paramCustom.c @@ -92,7 +92,7 @@ static void paramCustom_save(t_paramCustom *x, t_binbuf* bb) { x->bb = bb; // TRIGGER OUTPUT - outlet_bang(x->outlet2); + outlet_bang(x->outlet); x->bb = NULL; } else { @@ -122,7 +122,7 @@ static void paramClass_GUI(t_paramClass *x, int* ac, t_atom** av) { static void paramCustom_receive_anything(t_paramCustom_receive *r, t_symbol *s, int ac, t_atom *av){ - outlet_anything(r->owner->outlet,s,ac,av); + outlet_anything(r->owner->outlet2,s,ac,av); } -- cgit v1.2.1