mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-16 18:36:03 +01:00
fix logic bug in deciding if there is outstanding disk i/o work in butler
This commit is contained in:
parent
3f7fbbc4f4
commit
d1b98099bb
1 changed files with 1 additions and 1 deletions
|
|
@ -275,7 +275,7 @@ Butler::thread_work ()
|
|||
goto restart;
|
||||
}
|
||||
|
||||
disk_work_outstanding = flush_tracks_to_disk_normal (rl, err);
|
||||
disk_work_outstanding = disk_work_outstanding || flush_tracks_to_disk_normal (rl, err);
|
||||
|
||||
if (err && _session.actively_recording()) {
|
||||
/* stop the transport and try to catch as much possible
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue