summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2020-05-12 10:21:05 -0600
committerPaul Davis <paul@linuxaudiosystems.com>2020-05-12 11:34:38 -0600
commit9b3c31f6b97319ba1061f7302ff7a78f274c8ee3 (patch)
tree92483315e18543014afbb8af3f26779bf6bbaf80 /libs
parentef1565d2bfd97917951cc96d14c47eaf83d719c2 (diff)
As in previous commit, never locate because of loop handling
Diffstat (limited to 'libs')
-rw-r--r--libs/ardour/session_transport.cc7
1 files changed, 5 insertions, 2 deletions
diff --git a/libs/ardour/session_transport.cc b/libs/ardour/session_transport.cc
index ca935ad675..3447d550dd 100644
--- a/libs/ardour/session_transport.cc
+++ b/libs/ardour/session_transport.cc
@@ -315,6 +315,7 @@ Session::locate (samplepos_t target_sample, bool with_roll, bool with_flush, boo
// located to start of loop - this is looping, basically
+#if 0
if (!have_looped) {
/* first time */
if (_last_roll_location != al->start()) {
@@ -322,11 +323,13 @@ Session::locate (samplepos_t target_sample, bool with_roll, bool with_flush, boo
* started before loop since we've now hit the loop
* end.
*/
- add_post_transport_work (PostTransportLocate);
- need_butler = true;
+ //cerr << "need locate\n";
+ //add_post_transport_work (PostTransportLocate);
+ //need_butler = true;
}
}
+#endif
boost::shared_ptr<RouteList> rl = routes.reader();