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:
parent
d7c54d9847
commit
367748ed6a
1 changed files with 3 additions and 3 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue