summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorDaniel Schürmann <daschuer@mixxx.org>2017-07-08 00:49:18 +0200
committerDaniel Schürmann <daschuer@mixxx.org>2017-07-08 00:49:18 +0200
commitbcd598aab32502e558dd565e568ee576b5e2d0ae (patch)
tree4c05f6946085e5ea3ac0dd6c9281fb05a52f3c94 /lib
parent0e8f5e846fc69e7944195c5b131fb36814c45ee4 (diff)
Re-add enabling disabling ramping for reverb effect
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 75f62affcc..99c04d867c 100644
--- a/lib/reverb/Reverb.cc
+++ b/lib/reverb/Reverb.cc
@@ -451,7 +451,7 @@ void MixxxPlateX2::processBuffer(const sample_t* in, sample_t* out, const uint f
// loop through the buffer, processing each sample
for (uint i = 0; i + 1 < frames; i += 2) {
- sample_t mono_sample = blend*(in[i] + in[i + 1]) / 2;
+ sample_t mono_sample = blend * (in[i] + in[i + 1]) / 2;
sample_t xl, xr;
PlateStub::process(mono_sample, decay, &xl, &xr);
out[i] = xl + in[i];