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

@ -1533,7 +1533,7 @@ namespace AAXClasses
}
}
if (bypass)
if (bypass && pluginInstance->getBypassParameter() == nullptr)
pluginInstance->processBlockBypassed (buffer, midiBuffer);
else
pluginInstance->processBlock (buffer, midiBuffer);