From 1848ed20d9802c3615138a3d67a883df8d7c34dc Mon Sep 17 00:00:00 2001 From: curlymorphic Date: Sun, 7 May 2017 08:18:08 +0100 Subject: [PATCH] LFO controller now has correct frequency with multiple connections. m_bufferLastUpdated is now correctly set to the current frame upon updating the buffer. --- src/core/LfoController.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/core/LfoController.cpp b/src/core/LfoController.cpp index 6bf54a8bc..c1c81119f 100644 --- a/src/core/LfoController.cpp +++ b/src/core/LfoController.cpp @@ -113,6 +113,7 @@ void LfoController::updateValueBuffer() } m_currentPhase = absFraction( phase - m_phaseOffset ); + m_bufferLastUpdated = s_periods; } void LfoController::updatePhase()