Browse Source

Don't allow to force-stereo some lv2 plugins, fixes #334

tags/1.9.7
falkTX 9 years ago
parent
commit
2393bb0029
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      source/backend/plugin/CarlaPluginLV2.cpp

+ 1
- 1
source/backend/plugin/CarlaPluginLV2.cpp View File

@@ -1652,7 +1652,7 @@ public:
params += 1;
}

if ((pData->options & PLUGIN_OPTION_FORCE_STEREO) != 0 && (aIns == 1 || aOuts == 1) && fExt.state == nullptr && fExt.worker == nullptr)
if ((pData->options & PLUGIN_OPTION_FORCE_STEREO) != 0 && aIns <= 1 && aOuts <= 1 && fExt.state == nullptr && fExt.worker == nullptr)
{
if (fHandle2 == nullptr)
{


Loading…
Cancel
Save