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/WinVST/Interstage/.vs/VSTProject/v14/.suo | Bin 23040 -> 23040 bytes plugins/WinVST/Interstage/InterstageProc.cpp | 4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'plugins/WinVST/Interstage') diff --git a/plugins/WinVST/Interstage/.vs/VSTProject/v14/.suo b/plugins/WinVST/Interstage/.vs/VSTProject/v14/.suo index 3da0df7..4b0058e 100755 Binary files a/plugins/WinVST/Interstage/.vs/VSTProject/v14/.suo and b/plugins/WinVST/Interstage/.vs/VSTProject/v14/.suo differ diff --git a/plugins/WinVST/Interstage/InterstageProc.cpp b/plugins/WinVST/Interstage/InterstageProc.cpp index 16f3ba1..df5bb38 100755 --- a/plugins/WinVST/Interstage/InterstageProc.cpp +++ b/plugins/WinVST/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