Browse Source

Proper naming of forced-stereo 2nd audio port for internal plugins

tags/1.9.4
falkTX 11 years ago
parent
commit
2487cc4c58
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      source/backend/plugin/NativePlugin.cpp

+ 2
- 2
source/backend/plugin/NativePlugin.cpp View File

@@ -771,7 +771,7 @@ public:
portName += ":"; portName += ":";
} }


if (aIns > 1)
if (aIns > 1 && ! forcedStereoIn)
{ {
portName += "input_"; portName += "input_";
portName += CarlaString(j+1); portName += CarlaString(j+1);
@@ -804,7 +804,7 @@ public:
portName += ":"; portName += ":";
} }


if (aOuts > 1)
if (aOuts > 1 && ! forcedStereoOut)
{ {
portName += "output_"; portName += "output_";
portName += CarlaString(j+1); portName += CarlaString(j+1);


Loading…
Cancel
Save