summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorFerran Pujol Camins <ferranpujolcamins@gmail.com>2018-01-27 22:49:16 +0100
committerBe <be@mixxx.org>2018-04-02 19:57:22 -0500
commit16d5394be509c63b8196a35b757f07b15c8f674e (patch)
tree3b7d86a0d847fe14c762c87ca9cdfd1ba4fe8de1 /lib
parent025e34d49fe83adde7c7ed71664df54dafcc790b (diff)
Decrease Reverb Decay
Diffstat (limited to 'lib')
-rw-r--r--lib/reverb/Reverb.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/reverb/Reverb.cc b/lib/reverb/Reverb.cc
index 99c04d867c..e9d5ddbba6 100644
--- a/lib/reverb/Reverb.cc
+++ b/lib/reverb/Reverb.cc
@@ -438,7 +438,7 @@ void MixxxPlateX2::processBuffer(const sample_t* in, sample_t* out, const uint f
// set bandwidth
input.bandwidth.set(exp(-M_PI * (1. - (.005 + .994*bandwidthParam))));
// set decay
- sample_t decay = .749*decayParam;
+ sample_t decay = .890*decayParam;
// set damping
double damp = exp(-M_PI * (.0005+.9995*dampingParam));
tank.damping[0].set(damp);