Remove the Ardour warning for VST3 plugins

This commit is contained in:
Robbert van der Helm
2021-05-01 12:53:38 +02:00
parent 5b28d44797
commit 564e047b4b
2 changed files with 3 additions and 10 deletions
+3
View File
@@ -55,6 +55,9 @@ Versioning](https://semver.org/spec/v2.0.0.html).
- The `cache_time_info` compatibility option has been removed since it's now
obsolete.
- Removed a message that would show up when loading a VST3 plugin in Ardour,
warning about potential crashes due to Ardour not supporting multiple input
and output busses. These crashes have been resolved since yabridge 3.1.0.
### Fixed
-10
View File
@@ -266,16 +266,6 @@ Vst3PluginBridge::Vst3PluginBridge()
}
}
// TODO: Remove this warning once Ardour supports multiple
// inputs and outputs
if (result == Steinberg::kResultOk && name == u"Ardour"s) {
logger.log(
"WARNING: Ardour currently does not support "
"plugins with multiple inputs or outputs. If you "
"get a Wine crash dialog or a plugin causes Ardour "
"to freeze, then this is likely the cause.");
}
return YaHostApplication::GetNameResponse{
.result = result,
.name = tchar_pointer_to_u16string(name),