mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-17 12:16:30 +01:00
VST3: Ignore .vst3 dll in bundle of wrong architecture
This commit is contained in:
parent
fee4292bde
commit
8c7f2c93f0
1 changed files with 1 additions and 1 deletions
|
|
@ -309,7 +309,7 @@ ARDOUR::module_path_vst3 (string const& path)
|
|||
std::string p1 = Glib::path_get_dirname (path);
|
||||
std::string p2 = Glib::path_get_dirname (p1);
|
||||
std::string p3 = Glib::path_get_dirname (p2);
|
||||
if ( Glib::path_get_basename (p1) == vst3_bindir ()
|
||||
if ( (Glib::path_get_basename (p1) == "x86_64-win" || Glib::path_get_basename (p1) == "x86-win")
|
||||
&& Glib::path_get_basename (p2) == "Contents"
|
||||
&& Glib::path_get_basename (p3) == Glib::path_get_basename (path)
|
||||
) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue