diff options
author | N.N. <electrickery@users.sourceforge.net> | 2015-06-18 08:17:01 +0000 |
---|---|---|
committer | N.N. <electrickery@users.sourceforge.net> | 2015-06-18 08:17:01 +0000 |
commit | a00c146abdbf4a287a9070bb3444e05be1e1c729 (patch) | |
tree | 782101ee429f7f1a2b343e3bd94531f0913e91db /cyclone | |
parent | 372028cc8dca8649c4fa56f9b6443e86420a9221 (diff) |
fixed cyclone/rampsmooth~ inlets, improved the help patch
-This line, and those below, will be ignored--
M cyclone/sickle/rampsmooth.c
M doc/help/cyclone/rampsmooth~-help.pd
svn path=/trunk/externals/miXed/; revision=17490
Diffstat (limited to 'cyclone')
-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); |