mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-04 20:55:48 +01:00
fix typo that passed wrong value as 2nd parameter to Session::plan_master_strategy()
This commit is contained in:
parent
386264bd23
commit
1e474afbce
1 changed files with 1 additions and 1 deletions
|
|
@ -422,7 +422,7 @@ AudioEngine::process_callback (pframes_t nframes)
|
|||
|
||||
if (!_freewheeling || Freewheel.empty()) {
|
||||
double engine_speed = tmm.pre_process_transport_masters (nframes, sample_time_at_cycle_start());
|
||||
engine_speed = _session->plan_master_strategy (nframes, tmm.get_current_position_in_process_context(), tmm.get_current_position_in_process_context(), engine_speed);
|
||||
engine_speed = _session->plan_master_strategy (nframes, tmm.get_current_speed_in_process_context(), tmm.get_current_position_in_process_context(), engine_speed);
|
||||
Port::set_speed_ratio (engine_speed);
|
||||
DEBUG_TRACE (DEBUG::Slave, string_compose ("transport master (current=%1) gives speed %2 (ports using %3)\n", tmm.current() ? tmm.current()->name() : string("[]"), engine_speed, Port::speed_ratio()));
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue