commit 7592cde773d62a74985c7d5e929504627ca0b731
parent 38b0b8628e90f0c4ca4c67f55aa89a864ec6472a
Author: fundamental <[email protected]>
Date: Fri, 3 Jun 2011 12:10:26 -0400
Fixing Envelopes not going to zero
Min value updated from -40dB to -400dB
Diffstat:
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/Params/EnvelopeParams.h b/src/Params/EnvelopeParams.h
@@ -28,7 +28,7 @@
#include "Presets.h"
#define MAX_ENVELOPE_POINTS 40
-#define MIN_ENVELOPE_DB -40
+#define MIN_ENVELOPE_DB -400
class EnvelopeParams:public Presets
{
diff --git a/src/Synth/Envelope.cpp b/src/Synth/Envelope.cpp
@@ -182,7 +182,7 @@ REALTYPE Envelope::envout_dB()
if(out > 0.001)
envoutval = rap2dB(out);
else
- envoutval = -40.0;
+ envoutval = MIN_ENVELOPE_DB;
}
else
out = dB2rap(envout());