From 9298ad856a62d9ce37383df4fd3a7690eb9459e6 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Thu, 17 Nov 2016 14:08:26 +0100 Subject: [PATCH] fix type in prev. commit --- libs/ardour/plugin_insert.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/ardour/plugin_insert.cc b/libs/ardour/plugin_insert.cc index 6be3a10dda..1887bb7123 100644 --- a/libs/ardour/plugin_insert.cc +++ b/libs/ardour/plugin_insert.cc @@ -2427,7 +2427,7 @@ PluginInsert::set_state(const XMLNode& node, int version) /* treat VST plugins equivalent if they have the same uniqueID * allow to move sessions windows <> linux */ #ifdef LXVST_SUPPORT - if (plugin == 0 && (type == ARDOUR::Windows_VST || type == ARDOUR::MacVST) { + if (plugin == 0 && (type == ARDOUR::Windows_VST || type == ARDOUR::MacVST)) { type = ARDOUR::LXVST; plugin = find_plugin (_session, prop->value(), type); }