From b982fa4b4c5df049eea4f3098824a421b456b97e Mon Sep 17 00:00:00 2001 From: Dave French Date: Mon, 22 Dec 2014 22:22:51 +0000 Subject: [PATCH] Flanger correct interpolate calculation --- plugins/flanger/monodelay.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/flanger/monodelay.cpp b/plugins/flanger/monodelay.cpp index 4d1fdaa4c..74e884642 100644 --- a/plugins/flanger/monodelay.cpp +++ b/plugins/flanger/monodelay.cpp @@ -60,7 +60,7 @@ void MonoDelay::tick( sample_t* sample ) { readIndex += m_maxLength; } - float fract = fraction( m_length ); + float fract = 1.0f - fraction( m_length ); if(readIndex != m_maxLength-1 ) { *sample = linearInterpolate(m_buffer[readIndex] ,