Tempo ramps - fix missing rt call.

This commit is contained in:
nick_m 2016-05-28 00:24:02 +10:00
parent 78bec77c3e
commit 10228a4bc3

View file

@ -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;