diff options
Diffstat (limited to 'cyclone/sickle/svf.c')
-rw-r--r-- | cyclone/sickle/svf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cyclone/sickle/svf.c b/cyclone/sickle/svf.c index 5bc0458..74fcf99 100644 --- a/cyclone/sickle/svf.c +++ b/cyclone/sickle/svf.c @@ -113,8 +113,8 @@ static t_int *svf_perform(t_int *w) band -= band * band * band * SVF_DRIVE; } /* LATER rethink */ - x->x_band = (PD_BADFLOAT(band) ? 0. : band); - x->x_low = (PD_BADFLOAT(low) ? 0. : low); + x->x_band = (PD_BIGORSMALL(band) ? 0. : band); + x->x_low = (PD_BIGORSMALL(low) ? 0. : low); return (w + 10); } |