1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-02-07 04:10:08 +00:00

Made the VST hosting classes set the kVstTransportCycleActive flag.

This commit is contained in:
jules 2014-11-25 16:45:38 +00:00
parent d7c54d9847
commit 367748ed6a

View file

@ -1013,12 +1013,12 @@ public:
if (position.isLooping)
{
vstHostTime.cycleStartPos = position.ppqLoopStart;
vstHostTime.cycleEndPos = position.ppqLoopEnd;
vstHostTime.flags |= kVstCyclePosValid;
vstHostTime.cycleEndPos = position.ppqLoopEnd;
vstHostTime.flags |= (kVstCyclePosValid | kVstTransportCycleActive);
}
else
{
vstHostTime.flags &= ~kVstCyclePosValid;
vstHostTime.flags &= ~(kVstCyclePosValid | kVstTransportCycleActive);
}
}