aboutsummaryrefslogtreecommitdiff
path: root/modules/dynwav~.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/dynwav~.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/dynwav~.c')
-rw-r--r--modules/dynwav~.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/modules/dynwav~.c b/modules/dynwav~.c
index 3645f58..c04f56d 100644
--- a/modules/dynwav~.c
+++ b/modules/dynwav~.c
@@ -47,9 +47,9 @@ static t_int *dynwav_perform(t_int *w)
{
- t_float *wave = (float *)(w[3]);
- t_float *freq = (float *)(w[4]);
- t_float *out = (float *)(w[5]);
+ t_float *wave = (t_float *)(w[3]);
+ t_float *freq = (t_float *)(w[4]);
+ t_float *out = (t_float *)(w[5]);
t_dynwavctl *ctl = (t_dynwavctl *)(w[1]);
t_int n = (t_int)(w[2]);
@@ -113,9 +113,9 @@ static t_int *dynwav_perform_8point(t_int *w)
{
- t_float *wave = (float *)(w[3]);
- t_float *freq = (float *)(w[4]);
- t_float *out = (float *)(w[5]);
+ t_float *wave = (t_float *)(w[3]);
+ t_float *freq = (t_float *)(w[4]);
+ t_float *out = (t_float *)(w[5]);
t_dynwavctl *ctl = (t_dynwavctl *)(w[1]);
t_int n = (t_int)(w[2]);