13
0

detect VST arch only during discovery (not scan)

This commit is contained in:
Robin Gareus 2015-10-08 13:40:23 +02:00
parent 6899bd7c15
commit b5ea1b23b4

View File

@ -857,7 +857,11 @@ PluginManager::windows_vst_discover (string path, bool cache_only)
DEBUG_TRACE (DEBUG::PluginManager, string_compose ("windows_vst_discover '%1'\n", path));
if (Config->get_verbose_plugin_scan()) {
info << string_compose (_(" * %1 %2 %3"), path, (cache_only ? _(" (cache only)") : "", dll_info (path))) << endmsg;
if (cache_only) {
info << string_compose (_(" * %1 (cache only)"), path) << endmsg;
} else {
info << string_compose (_(" * %1 %2"), path, dll_info (path)) << endmsg;
}
}
_cancel_timeout = false;