aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/LinuxVST
diff options
context:
space:
mode:
authorChris Johnson <jinx6568@sover.net>2019-08-20 16:23:13 -0400
committerChris Johnson <jinx6568@sover.net>2019-08-20 16:23:13 -0400
commit51448bab24435df3376654d4c9fb82cbb0f44e39 (patch)
tree39e25f64694364ea6fef8164c42836bcd0f457a9 /plugins/LinuxVST
parented847692d3e120b8c64b42d2a073d5b6bb033981 (diff)
downloadairwindows-lv2-port-51448bab24435df3376654d4c9fb82cbb0f44e39.tar.gz
airwindows-lv2-port-51448bab24435df3376654d4c9fb82cbb0f44e39.tar.bz2
airwindows-lv2-port-51448bab24435df3376654d4c9fb82cbb0f44e39.zip
Bugfix/tweak on Interstage
Diffstat (limited to 'plugins/LinuxVST')
-rwxr-xr-xplugins/LinuxVST/src/Interstage/InterstageProc.cpp4
1 files changed, 2 insertions, 2 deletions
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)
{