summaryrefslogtreecommitdiff
path: root/libs/ardour/session_process.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2020-02-17 20:16:23 -0700
committerPaul Davis <paul@linuxaudiosystems.com>2020-02-19 15:07:42 -0700
commitad402e76afa9d4c16a514b3792c670e0c84c63c4 (patch)
tree5d2e3e03b0ef898a5488e097f1045a66f6fa064a /libs/ardour/session_process.cc
parentb1922fb220cab5b4685eb6c6f53ecc1be221f553 (diff)
remove "destination_sample" from API for Session::set_transport_speed()
This was a leftover from changes made for Tracks Live, related to the concept of an auto-return preference. We don't use this anywhere in Ardour or Mixbus, and the concept should eventually be removed entirely.
Diffstat (limited to 'libs/ardour/session_process.cc')
-rw-r--r--libs/ardour/session_process.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/session_process.cc b/libs/ardour/session_process.cc
index a4429c3609..f98970bf2c 100644
--- a/libs/ardour/session_process.cc
+++ b/libs/ardour/session_process.cc
@@ -895,7 +895,7 @@ Session::process_event (SessionEvent* ev)
case SessionEvent::SetTransportSpeed:
- set_transport_speed (ev->speed, ev->target_sample, ev->yes_or_no, ev->second_yes_or_no, ev->third_yes_or_no);
+ set_transport_speed (ev->speed, ev->yes_or_no, ev->second_yes_or_no, ev->third_yes_or_no);
break;
case SessionEvent::SetTransportMaster: