From 65f970f0ca1bee9a6af2a76da9094b6698f71848 Mon Sep 17 00:00:00 2001 From: "Michael R. Fisher" Date: Sun, 14 Jul 2013 21:22:34 -0500 Subject: [PATCH] set the flag true --- libs/ardour/lv2_plugin.cc | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/libs/ardour/lv2_plugin.cc b/libs/ardour/lv2_plugin.cc index 6d4a71869f..df33e6c38d 100644 --- a/libs/ardour/lv2_plugin.cc +++ b/libs/ardour/lv2_plugin.cc @@ -1980,16 +1980,18 @@ LV2World::load_bundled_plugins() if (plugin_objects) { for ( vector::iterator x = plugin_objects->begin(); x != plugin_objects->end (); ++x) { #ifdef WINDOWS - string uri = "file:///" + **x + "/"; + string uri = "file:///" + **x + "/"; #else - string uri = "file://" + **x + "/"; + string uri = "file://" + **x + "/"; #endif - LilvNode *node = lilv_new_uri(world, uri.c_str()); - lilv_world_load_bundle(world, node); - lilv_node_free(node); - } + LilvNode *node = lilv_new_uri(world, uri.c_str()); + lilv_world_load_bundle(world, node); + lilv_node_free(node); } + } delete (plugin_objects); + + _bundle_checked = true; } }