From 6b0a3cfffe513bf8ced233656ff5e3b3fdf85c77 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Tue, 28 Jan 2020 13:04:39 -0700 Subject: fix previous commit, and another instance of the same (incorrect constructor) issue --- libs/ardour/session_transport.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/ardour/session_transport.cc b/libs/ardour/session_transport.cc index 1c6c3ff175..52e99a75b2 100644 --- a/libs/ardour/session_transport.cc +++ b/libs/ardour/session_transport.cc @@ -761,7 +761,7 @@ Session::maybe_stop (samplepos_t limit) if (synced_to_engine ()) { _engine.transport_stop (); } else { - TFSM_EVENT (TransportFSM::StopTransport, false, false); + TFSM_STOP (false, false); } return true; } @@ -1661,7 +1661,7 @@ Session::unset_play_loop (bool change_transport_state) /* likely need to flush track buffers: this will locate us to wherever we are */ if (change_transport_state && transport_rolling ()) { - TFSM_EVENT (TransportFSM::StopTransport); + TFSM_STOP (false, false); } overwrite_some_buffers (boost::shared_ptr(), LoopDisabled); -- cgit v1.2.3