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); } } }