From 1c603682b71b7ef64f35fd6b3ef3afdfeaba95c5 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Tue, 27 Jun 2017 15:33:27 -0400 Subject: [PATCH] since Session::fail_roll() just calls ::no_roll() make that more explicit when there's actually no failure --- libs/ardour/session_process.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/ardour/session_process.cc b/libs/ardour/session_process.cc index a162303d42..5ac7a331d1 100644 --- a/libs/ardour/session_process.cc +++ b/libs/ardour/session_process.cc @@ -897,7 +897,7 @@ Session::process_without_events (pframes_t nframes) } if (_transport_speed == 0) { - fail_roll (nframes); + no_roll (nframes); return; } @@ -918,7 +918,7 @@ Session::process_without_events (pframes_t nframes) framepos_t const stop_limit = compute_stop_limit (); if (maybe_stop (stop_limit)) { - fail_roll (nframes); + no_roll (nframes); return; }