fix type in prev. commit
authorRobin Gareus <robin@gareus.org>
Thu, 17 Nov 2016 13:08:26 +0000 (14:08 +0100)
committerRobin Gareus <robin@gareus.org>
Thu, 17 Nov 2016 13:08:26 +0000 (14:08 +0100)
libs/ardour/plugin_insert.cc

index 6be3a10dda31516600d8673f1131f58301f74bb9..1887bb712384b981468c1a3910a1a103652098c7 100644 (file)
@@ -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);
        }