diff options
Diffstat (limited to 'cyclone/sickle')
-rw-r--r-- | cyclone/sickle/rampsmooth.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cyclone/sickle/rampsmooth.c b/cyclone/sickle/rampsmooth.c index 32be1d7..00819da 100644 --- a/cyclone/sickle/rampsmooth.c +++ b/cyclone/sickle/rampsmooth.c @@ -188,6 +188,8 @@ static void *rampsmooth_new(t_symbol *s, int ac, t_atom *av) x->x_target = 0.; x->x_incr = 0.; x->x_nleft = 0; + inlet_new((t_object *)x, (t_pd *)x, &s_float, gensym("rampup")); + inlet_new((t_object *)x, (t_pd *)x, &s_float, gensym("rampdown")); #endif outlet_new((t_object *)x, &s_signal); return (x); |