aboutsummaryrefslogtreecommitdiff
path: root/modules/scrollgrid1D~.c
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2011-10-08 17:22:41 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2011-10-08 17:22:41 +0000
commit4a05094c9a009707674c079c0481eaf8e1f8490f (patch)
treed63533d6b056451337017faa6deb69ea55788c2e /modules/scrollgrid1D~.c
parentc39d22e4bd9c3b06c4199ea59d0a7faa51401f7f (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/scrollgrid1D~.c')
-rw-r--r--modules/scrollgrid1D~.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/modules/scrollgrid1D~.c b/modules/scrollgrid1D~.c
index d47bb51..d59a101 100644
--- a/modules/scrollgrid1D~.c
+++ b/modules/scrollgrid1D~.c
@@ -75,13 +75,13 @@ static t_int *scrollgrid1D_perform(t_int *w)
{
- t_float *freq = (float *)(w[3]);
- t_float *t1 = (float *)(w[4]);
- t_float *t2 = (float *)(w[5]);
- t_float *order = (float *)(w[6]);
- t_float *outx = (float *)(w[7]);
- t_float *outy = (float *)(w[8]);
- t_float *outz = (float *)(w[9]);
+ t_float *freq = (t_float *)(w[3]);
+ t_float *t1 = (t_float *)(w[4]);
+ t_float *t2 = (t_float *)(w[5]);
+ t_float *order = (t_float *)(w[6]);
+ t_float *outx = (t_float *)(w[7]);
+ t_float *outy = (t_float *)(w[8]);
+ t_float *outz = (t_float *)(w[9]);
t_scrollgrid1Dctl *ctl = (t_scrollgrid1Dctl *)(w[1]);
t_int n = (t_int)(w[2]);