13
0

VST scanner: fix Ardour type IDs

This commit is contained in:
Robin Gareus 2014-03-08 17:24:42 +01:00
parent 944c32346b
commit cf1363a4a9

View File

@ -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;
}