summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
Diffstat (limited to 'libs')
-rw-r--r--libs/ardour/vst_info_file.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/ardour/vst_info_file.cc b/libs/ardour/vst_info_file.cc
index e6350c0a41..ec1223c11c 100644
--- a/libs/ardour/vst_info_file.cc
+++ b/libs/ardour/vst_info_file.cc
@@ -702,10 +702,10 @@ vstfx_info_from_plugin (const char *dllpath, VSTState* vstfx, vector<VSTInfo *>
switch(type) {
#ifdef WINDOWS_VST_SUPPORT
- case 1: fst_close(vstfx); break;
+ case ARDOUR::Windows_VST: fst_close(vstfx); break;
#endif
#ifdef LXVST_SUPPORT
- case 2: vstfx_close (vstfx); break;
+ case ARDOUR::LXVST: vstfx_close (vstfx); break;
#endif
default: assert(0); break;
}