From ef1565d2bfd97917951cc96d14c47eaf83d719c2 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Tue, 12 May 2020 10:18:31 -0600 Subject: [PATCH] We use seamless looping always now. Never any need to locate for loop changes --- 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 04b3a3e960..ca935ad675 100644 --- a/libs/ardour/session_transport.cc +++ b/libs/ardour/session_transport.cc @@ -250,7 +250,7 @@ Session::locate (samplepos_t target_sample, bool with_roll, bool with_flush, boo } } - if (force || !for_loop_end || loop_changing) { + if (force) { PostTransportWork todo = PostTransportLocate;