summaryrefslogtreecommitdiff
path: root/libs/ardour/session.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libs/ardour/session.cc')
-rw-r--r--libs/ardour/session.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/libs/ardour/session.cc b/libs/ardour/session.cc
index 62660c9fa2..454a9065ed 100644
--- a/libs/ardour/session.cc
+++ b/libs/ardour/session.cc
@@ -1443,7 +1443,7 @@ Session::auto_loop_changed (Location* location)
*/
loop_changing = true;
- request_locate (location->start(), true);
+ request_locate (location->start(), MustRoll);
} else {
@@ -6083,9 +6083,9 @@ void
Session::goto_end ()
{
if (_session_range_location) {
- request_locate (_session_range_location->end(), false);
+ request_locate (_session_range_location->end(), MustStop);
} else {
- request_locate (0, false);
+ request_locate (0, MustStop);
}
}
@@ -6093,9 +6093,9 @@ void
Session::goto_start (bool and_roll)
{
if (_session_range_location) {
- request_locate (_session_range_location->start(), and_roll);
+ request_locate (_session_range_location->start(), and_roll ? MustRoll : DoTheRightThing);
} else {
- request_locate (0, and_roll);
+ request_locate (0, and_roll ? MustRoll : DoTheRightThing);
}
}