summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2020-01-28 13:04:39 -0700
committerPaul Davis <paul@linuxaudiosystems.com>2020-01-28 13:04:39 -0700
commit6b0a3cfffe513bf8ced233656ff5e3b3fdf85c77 (patch)
tree889fa6acaaf7c4ff262246643a15be63f3410ddd
parenta5dbac0a9cf22abf8225147c2005a1af78a4f6f2 (diff)
fix previous commit, and another instance of the same (incorrect constructor) issue
-rw-r--r--libs/ardour/session_transport.cc4
1 files 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<Route>(), LoopDisabled);