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/fwarp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'modules/fwarp.c') diff --git a/modules/fwarp.c b/modules/fwarp.c index 28fe024..089edf2 100644 --- a/modules/fwarp.c +++ b/modules/fwarp.c @@ -32,8 +32,8 @@ typedef struct fwarp static void fwarp_float(t_fwarp *x, t_floatarg f) { - float twopi = 2.0f * M_PI; - float sr = sys_getsr(); + t_float twopi = 2.0f * M_PI; + t_float sr = sys_getsr(); f /= sr; f = tan(twopi * f) / twopi; outlet_float(x->x_out, f * sr); -- cgit v1.2.1