aboutsummaryrefslogtreecommitdiff
path: root/src/paramCustom.c
diff options
context:
space:
mode:
authorThomas O Fredericks <mrtof@users.sourceforge.net>2009-10-07 20:06:41 +0000
committerThomas O Fredericks <mrtof@users.sourceforge.net>2009-10-07 20:06:41 +0000
commit9728c280040625fd4eff572b71b3cb6c8495206b (patch)
treea8570fd6580501499a646fafd3df4632df6fb665 /src/paramCustom.c
parentcd658ffed1329080f06f84e890dcda4302ca5864 (diff)
fixed a problem having to do with absolute and relative paths
svn path=/trunk/externals/tof/; revision=12555
Diffstat (limited to 'src/paramCustom.c')
-rw-r--r--src/paramCustom.c4
1 files changed, 2 insertions, 2 deletions
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);
}