Browse Source

Make lv2 state makePath return a unique path per plugin

Signed-off-by: falkTX <falktx@falktx.com>
tags/v2.2.0-RC1
falkTX 4 years ago
parent
commit
f2e4cce1e9
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      source/backend/plugin/CarlaPluginLV2.cpp

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

@@ -6911,7 +6911,10 @@ private:
#endif
target = File::getCurrentWorkingDirectory();

target = target.getChildFile(path);
const CarlaPluginLV2* const plugin = (CarlaPluginLV2*)handle;
target = target.getChildFile(plugin->pData->engine->getName())
.getChildFile(plugin->getName())
.getChildFile(path);
}

if (! target.exists())


Loading…
Cancel
Save