Skip to content
Snippets Groups Projects
Commit e66fc674 authored by Ivica Bukvic's avatar Ivica Bukvic
Browse files

fixed bug where curve parameter was ignored when entering value pairs (target...

fixed bug where curve parameter was ignored when entering value pairs (target duration) without the curve parameter
parent bf11e6a1
No related branches found
No related tags found
No related merge requests found
...@@ -296,7 +296,7 @@ static void curve_list(t_curve *x, t_symbol *s, int ac, t_atom *av) ...@@ -296,7 +296,7 @@ static void curve_list(t_curve *x, t_symbol *s, int ac, t_atom *av)
segp->s_delta = av[1].a_w.w_float; segp->s_delta = av[1].a_w.w_float;
else else
segp->s_delta = 0; segp->s_delta = 0;
curve_cc(x, segp, 0.); curve_cc(x, segp, x->x_ccinput);
} }
x->x_deltaset = 0; x->x_deltaset = 0;
x->x_target = x->x_segs->s_target; x->x_target = x->x_segs->s_target;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment