since Session::fail_roll() just calls ::no_roll() make that more explicit when there...
authorPaul Davis <paul@linuxaudiosystems.com>
Tue, 27 Jun 2017 19:33:27 +0000 (15:33 -0400)
committerPaul Davis <paul@linuxaudiosystems.com>
Mon, 18 Sep 2017 15:40:53 +0000 (11:40 -0400)
libs/ardour/session_process.cc

index a162303d428980e6f6358962c76fb13feb21c487..5ac7a331d1b539409fcd5d0a4cfaa6617863130c 100644 (file)
@@ -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;
        }