mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Fixed an unused variable in the VST3 wrapper
This commit is contained in:
parent
db23cedf94
commit
4c19b9fac5
1 changed files with 1 additions and 1 deletions
|
|
@ -1537,7 +1537,7 @@ public:
|
|||
{
|
||||
if (pluginInstance->getBypassParameter() == nullptr)
|
||||
{
|
||||
if (auto* bypassParam = comPluginInstance->getBypassParameter())
|
||||
if (comPluginInstance->getBypassParameter() != nullptr)
|
||||
{
|
||||
auto privateData = ValueTree::readFromData (data, static_cast<size_t> (sizeInBytes));
|
||||
setBypassed (static_cast<bool> (privateData.getProperty ("Bypass", var (false))));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue