From 51448bab24435df3376654d4c9fb82cbb0f44e39 Mon Sep 17 00:00:00 2001 From: Chris Johnson Date: Tue, 20 Aug 2019 16:23:13 -0400 Subject: Bugfix/tweak on Interstage --- plugins/LinuxVST/src/Interstage/InterstageProc.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'plugins/LinuxVST') diff --git a/plugins/LinuxVST/src/Interstage/InterstageProc.cpp b/plugins/LinuxVST/src/Interstage/InterstageProc.cpp index 16f3ba1..df5bb38 100755 --- a/plugins/LinuxVST/src/Interstage/InterstageProc.cpp +++ b/plugins/LinuxVST/src/Interstage/InterstageProc.cpp @@ -20,7 +20,7 @@ void Interstage::processReplacing(float **inputs, float **outputs, VstInt32 samp double firstStage = 0.381966011250105 / overallscale; double iirAmount = 0.00295 / overallscale; - double threshold = 0.381966011250105 / overallscale; + double threshold = 0.381966011250105; while (--sampleFrames >= 0) { @@ -107,7 +107,7 @@ void Interstage::processDoubleReplacing(double **inputs, double **outputs, VstIn double firstStage = 0.381966011250105 / overallscale; double iirAmount = 0.00295 / overallscale; - double threshold = 0.381966011250105 / overallscale; + double threshold = 0.381966011250105; while (--sampleFrames >= 0) { -- cgit v1.2.3