Browse Source

Fix symbol for carla.lv2 plugins with many midi outputs

tags/v2.1-rc1
falkTX 5 years ago
parent
commit
8385b5ee41
Signed by: falkTX <falktx@gmail.com> GPG Key ID: 2D3445A829213837
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      source/plugin/carla-lv2-export.cpp

+ 2
- 2
source/plugin/carla-lv2-export.cpp View File

@@ -445,8 +445,8 @@ static void writePluginFile(const NativePluginDescriptor* const pluginDesc)
{
if (pluginDesc->midiOuts > 1)
{
text += " lv2:symbol \"lv2_midi_out_" + String(portIndex+1) + "\" ;\n";
text += " lv2:name \"MIDI Output #" + String(portIndex+1) + "\" ;\n";
text += " lv2:symbol \"lv2_midi_out_1\" ;\n";
text += " lv2:name \"MIDI Output #1\" ;\n";
}
else
{


Loading…
Cancel
Save