mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-15 19:16:40 +01:00
Tempo ramps - fix missing rt call.
This commit is contained in:
parent
78bec77c3e
commit
10228a4bc3
1 changed files with 1 additions and 1 deletions
|
|
@ -294,7 +294,7 @@ intptr_t Session::vst_callback (
|
|||
bbt = session->tempo_map ().bbt_at_frame_rt (looploc->start ());
|
||||
timeinfo->cycleStartPos = vst_ppq (tm, bbt, ppqBar);
|
||||
|
||||
bbt = session->tempo_map ().bbt_at_frame (looploc->end ());
|
||||
bbt = session->tempo_map ().bbt_at_frame_rt (looploc->end ());
|
||||
timeinfo->cycleEndPos = vst_ppq (tm, bbt, ppqBar);
|
||||
|
||||
newflags |= kVstCyclePosValid;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue