Browse Source

Dont prefer plugin bridges for certain hardcoded LV2 plugins

Signed-off-by: falkTX <falktx@gmail.com>
tags/v1.9.13
falkTX 5 years ago
parent
commit
2f3a442459
Signed by: falkTX <falktx@gmail.com> GPG Key ID: 2D3445A829213837
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      source/backend/engine/CarlaEngine.cpp

+ 2
- 2
source/backend/engine/CarlaEngine.cpp View File

@@ -390,9 +390,9 @@ bool CarlaEngine::addPlugin(const BinaryType btype, const PluginType ptype,
}

// Prefer bridges for some specific plugins
bool preferBridges = pData->options.preferPluginBridges;
const bool preferBridges = pData->options.preferPluginBridges;

#ifndef BUILD_BRIDGE
#if 0 // ndef BUILD_BRIDGE
if (! preferBridges)
{
if (ptype == PLUGIN_LV2 && label != nullptr)


Loading…
Cancel
Save