mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Plugin clients: Fix bypass behaviours to match getBypassParameter() documentation
This commit is contained in:
parent
702bfdb2c0
commit
3f315ddd00
7 changed files with 55 additions and 15 deletions
|
|
@ -1652,7 +1652,7 @@ private:
|
|||
|
||||
if (processor.isSuspended())
|
||||
buffer.clear();
|
||||
else if (bypassParam != nullptr && [au shouldBypassEffect])
|
||||
else if (bypassParam == nullptr && [au shouldBypassEffect])
|
||||
processor.processBlockBypassed (buffer, midiBuffer);
|
||||
else
|
||||
processor.processBlock (buffer, midiBuffer);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue