We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f0dc0f commit 4f74151Copy full SHA for 4f74151
src/core/Song.cpp
@@ -295,7 +295,7 @@ void Song::processNextBuffer()
295
}
296
297
// Handle loop points, and inform VST plugins of the loop status
298
- if (loopEnabled || m_loopRenderRemaining > 1)
+ if (loopEnabled || (m_loopRenderRemaining > 1 && getPlayPos() >= timeline->loopBegin()))
299
{
300
m_vstSyncController.startCycle(
301
timeline->loopBegin().getTicks(), timeline->loopEnd().getTicks());
0 commit comments