diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2011-10-08 17:22:41 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2011-10-08 17:22:41 +0000 |
commit | 4a05094c9a009707674c079c0481eaf8e1f8490f (patch) | |
tree | d63533d6b056451337017faa6deb69ea55788c2e /modules/ffpoly.c | |
parent | c39d22e4bd9c3b06c4199ea59d0a7faa51401f7f (diff) |
converted float to t_float to support double-precision Pd, creb still needs to separate t_float and t_sample tho
svn path=/trunk/externals/creb/; revision=15546
Diffstat (limited to 'modules/ffpoly.c')
-rw-r--r-- | modules/ffpoly.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/ffpoly.c b/modules/ffpoly.c index 097891c..844a96c 100644 --- a/modules/ffpoly.c +++ b/modules/ffpoly.c @@ -63,7 +63,7 @@ static void ffpoly_compute(t_ffpoly *x, t_floatarg fcoef) } - outlet_float(x->x_outlet, (float)out); + outlet_float(x->x_outlet, (t_float)out); } |