From 6c97eaf786850a94cf1338ecaade0d60e8f02486 Mon Sep 17 00:00:00 2001 From: Aleks Rutins Date: Sat, 15 Apr 2023 20:21:02 -0400 Subject: [PATCH] Amplify the dry signal as well --- plugin.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin.cc b/plugin.cc index c04731d..4f6b599 100644 --- a/plugin.cc +++ b/plugin.cc @@ -22,7 +22,7 @@ namespace Dynamite { dist = dist * gainCoeff; - output[pos] = (mix * dist) + ((1.0 - mix) * input[pos]); + output[pos] = (mix * dist) + ((1.0 - mix) * input[pos] * gainCoeff); } } }