mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-29 09:57:44 +01:00
Fix FixedDelayline, default configuration increased set max-delay
This commit is contained in:
parent
61be0990fa
commit
a80c8e1bb7
1 changed files with 2 additions and 1 deletions
|
|
@ -91,8 +91,9 @@ FixedDelay::configure (const ChanCount& count, samplecnt_t max_delay, bool shrin
|
|||
return;
|
||||
}
|
||||
_max_delay = max_delay;
|
||||
} else if (max_delay <= _max_delay || count <= _count) {
|
||||
} else if (max_delay <= _max_delay && count <= _count) {
|
||||
return;
|
||||
} else {
|
||||
_max_delay = std::max (_max_delay, max_delay);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue