From 4a05094c9a009707674c079c0481eaf8e1f8490f Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Sat, 8 Oct 2011 17:22:41 +0000 Subject: 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 --- modules/scrollgrid1D~.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'modules/scrollgrid1D~.c') 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]); -- cgit v1.2.1