diff options
-rwxr-xr-x | scripts/ingenams | 2 | ||||
-rw-r--r-- | src/server/BlockFactory.cpp | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/scripts/ingenams b/scripts/ingenams index 3f7ee48f..453e555a 100755 --- a/scripts/ingenams +++ b/scripts/ingenams @@ -170,7 +170,7 @@ class Patch: def ladspa_module(world, mod_id, x, y, poly, lib, label): lv2_uri = '' - # Kludge LADSPA library and label to Fomp LV2 URIs where applicable + # Kludge LADSPA library and label to LV2 URIs where applicable if lib == 'blvco': lv2_uri = fomp_prefix + label.lower().replace('-', '_') elif lib == 'mvclpf24' or lib == 'mvchpf24': diff --git a/src/server/BlockFactory.cpp b/src/server/BlockFactory.cpp index c98de283..76bc5f4b 100644 --- a/src/server/BlockFactory.cpp +++ b/src/server/BlockFactory.cpp @@ -191,6 +191,8 @@ BlockFactory::load_lv2_plugins() } } + _world->log().info(fmt("Loaded %1% plugins\n") % _plugins.size()); + lilv_node_free(lv2_connectionOptional); } |