From 968e313857743435e662c831a8b29f50b20e0d41 Mon Sep 17 00:00:00 2001 From: Tom Schouten Date: Mon, 27 Jan 2003 17:06:07 +0000 Subject: creb 0.7 svn path=/trunk/externals/creb/; revision=364 --- modules/eadsr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/eadsr.c') diff --git a/modules/eadsr.c b/modules/eadsr.c index 0e0b9db..bba96cd 100644 --- a/modules/eadsr.c +++ b/modules/eadsr.c @@ -115,7 +115,7 @@ static t_int *eadsr_perform(t_int *w) state -= decay*(state-sustain); } - ctl->c_state = state; + ctl->c_state = IS_DENORMAL(state) ? 0 : state; return (w+4); } -- cgit v1.2.1