mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-05-07 03:50:11 +02:00
Add way to use 32-bit VST3 when both are installed
Otherwise we would always use the 64-bit version and there would be no way to use the 32-bit version, if version for some reason works better. Relates to #80.
This commit is contained in:
@@ -125,6 +125,12 @@ Configuration::Configuration(const fs::path& config_path,
|
||||
} else {
|
||||
invalid_options.push_back(key);
|
||||
}
|
||||
} else if (key == "vst3_prefer_32bit") {
|
||||
if (const auto parsed_value = value.as_boolean()) {
|
||||
vst3_prefer_32bit = parsed_value->get();
|
||||
} else {
|
||||
invalid_options.push_back(key);
|
||||
}
|
||||
} else {
|
||||
unknown_options.push_back(key);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user