Browse Source

Allow to run internal, sf2 and sfz if bridge is native

tags/v1.9.11
falkTX FilipeCSnuk 6 years ago
parent
commit
e639cc6664
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

@@ -427,7 +427,7 @@ bool CarlaEngine::addPlugin(const BinaryType btype, const PluginType ptype,
}
else
{
#ifndef BUILD_BRIDGE
#ifndef BUILD_BRIDGE_ALTERNATIVE_ARCH
bool use16Outs;
#endif
setLastError("Invalid or unsupported plugin type");
@@ -453,7 +453,7 @@ bool CarlaEngine::addPlugin(const BinaryType btype, const PluginType ptype,
plugin = CarlaPlugin::newVST2(initializer);
break;

#ifndef BUILD_BRIDGE
#ifndef BUILD_BRIDGE_ALTERNATIVE_ARCH
case PLUGIN_INTERNAL:
plugin = CarlaPlugin::newNative(initializer);
break;


Loading…
Cancel
Save