Browse Source

Fix regression when loading patchbay connections

tags/1.9.8
falkTX 7 years ago
parent
commit
d913d3309c
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      source/backend/engine/CarlaEngine.cpp

+ 1
- 1
source/backend/engine/CarlaEngine.cpp View File

@@ -2188,7 +2188,7 @@ bool CarlaEngine::loadProjectInternal(juce::XmlDocument& xmlDoc)
{
const String& tagName(elem->getTagName());

if (! tagName.equalsIgnoreCase("patchbay") || ! tagName.equalsIgnoreCase("externalpatchbay"))
if (! tagName.equalsIgnoreCase("patchbay") && ! tagName.equalsIgnoreCase("externalpatchbay"))
continue;

CarlaString sourcePort, targetPort;


Loading…
Cancel
Save