From 14c2fdccf486f2e2c7ce33dd162027da89a5d1b7 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Mon, 19 Apr 2021 15:45:07 -0600 Subject: [PATCH] use correct API in a do-nothing-but-forced locate to start rolling --- libs/ardour/session_transport.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/ardour/session_transport.cc b/libs/ardour/session_transport.cc index 3c77d17a15..a41cd1b6b5 100644 --- a/libs/ardour/session_transport.cc +++ b/libs/ardour/session_transport.cc @@ -225,7 +225,7 @@ Session::locate (samplepos_t target_sample, bool with_roll, bool with_flush, boo */ if (with_roll) { - set_transport_speed (_default_transport_speed, false); + start_transport (); } TFSM_EVENT (TransportFSM::LocateDone); Located (); /* EMIT SIGNAL */