1
0
Fork 0
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:
reuk 2022-01-21 17:56:29 +00:00
parent 702bfdb2c0
commit 3f315ddd00
7 changed files with 55 additions and 15 deletions

View file

@ -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);