Browse Source

Carla: Don't try to init bridge plugins if bridge is missing

tags/v0.9.0
falkTX 12 years ago
parent
commit
1b5cf3f6b3
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      c++/carla-engine/carla_engine.cpp

+ 1
- 1
c++/carla-engine/carla_engine.cpp View File

@@ -680,7 +680,7 @@ short CarlaEngine::addPlugin(const BinaryType btype, const PluginType ptype, con
CarlaPlugin* plugin = nullptr;

#ifndef BUILD_BRIDGE
if (btype != BINARY_NATIVE || (options.preferPluginBridges && /*getBinaryBidgePath(btype) &&*/ type() == CarlaEngineTypeJack))
if (btype != BINARY_NATIVE || (options.preferPluginBridges && extra /* extra = bridgeBinary */ && type() == CarlaEngineTypeJack))
{
# ifdef CARLA_ENGINE_JACK
if (options.processMode != CarlaBackend::PROCESS_MODE_MULTIPLE_CLIENTS)


Loading…
Cancel
Save