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/lattice~.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'modules/lattice~.c') diff --git a/modules/lattice~.c b/modules/lattice~.c index 28adf19..3568ea7 100644 --- a/modules/lattice~.c +++ b/modules/lattice~.c @@ -50,8 +50,8 @@ static t_int *lattice_perform(t_int *w) { - t_float *in = (float *)(w[3]); - t_float *out = (float *)(w[4]); + t_float *in = (t_float *)(w[3]); + t_float *out = (t_float *)(w[4]); t_latticectl *ctl = (t_latticectl *)(w[1]); t_int i,j; t_int n = (t_int)(w[2]); -- cgit v1.2.1