13
0

since Session::fail_roll() just calls ::no_roll() make that more explicit when there's actually no failure

This commit is contained in:
Paul Davis 2017-06-27 15:33:27 -04:00
parent feaabcb6c9
commit 1c603682b7

View 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;
}