From 2f3a4424591b49689403372d35d55148bef5a51b Mon Sep 17 00:00:00 2001 From: falkTX Date: Tue, 25 Dec 2018 08:54:18 +0000 Subject: [PATCH] Dont prefer plugin bridges for certain hardcoded LV2 plugins Signed-off-by: falkTX --- source/backend/engine/CarlaEngine.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/backend/engine/CarlaEngine.cpp b/source/backend/engine/CarlaEngine.cpp index 97a69a7ad..34a3adc07 100644 --- a/source/backend/engine/CarlaEngine.cpp +++ b/source/backend/engine/CarlaEngine.cpp @@ -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)