Fix loading 32-bit VST3 plugins

This is why GHC warns on shadowing by default. Probably.
This commit is contained in:
Robbert van der Helm
2021-02-10 21:03:07 +01:00
parent 433d35109a
commit cc5480a224
+1 -1
View File
@@ -155,7 +155,7 @@ fs::path find_plugin_library(const fs::path& this_plugin_path,
if (!fs::exists(candidate_path)) {
// Try the 32-bit version no 64-bit version exists (although, is
// there a single VST3 plugin where this is the case?)
fs::path candidate_path =
candidate_path =
bundle_home / "Contents" / "x86-win" / win_module_name;
}