mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-03 12:19:33 +01:00
since Session::fail_roll() just calls ::no_roll() make that more explicit when there's actually no failure
This commit is contained in:
parent
feaabcb6c9
commit
1c603682b7
1 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue