From 229ea31f34103459168f6e5d9df8bbf1ac266997 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Thu, 15 Apr 2021 23:11:35 -0600 Subject: [PATCH] transport masters: use Session::request_stop() rather than Session::request_transport_speed() --- libs/ardour/transport_master_manager.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/ardour/transport_master_manager.cc b/libs/ardour/transport_master_manager.cc index 127b9e6886..ef096fe5ab 100644 --- a/libs/ardour/transport_master_manager.cc +++ b/libs/ardour/transport_master_manager.cc @@ -197,7 +197,7 @@ TransportMasterManager::pre_process_transport_masters (pframes_t nframes, sample if (!_current_master->ok()) { /* stop */ - _session->request_transport_speed (0.0, false, _current_master->request_type()); + _session->request_stop (false, false, _current_master->request_type()); DEBUG_TRACE (DEBUG::Slave, "no roll2 - master has failed\n"); _master_invalid_this_cycle = true; return 1.0;