From 564e047b4b2ccd0023611504de36a13e78d614c2 Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Sat, 1 May 2021 12:53:38 +0200 Subject: [PATCH] Remove the Ardour warning for VST3 plugins --- CHANGELOG.md | 3 +++ src/plugin/bridges/vst3.cpp | 10 ---------- 2 files changed, 3 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b81d6e22..0b991847 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/src/plugin/bridges/vst3.cpp b/src/plugin/bridges/vst3.cpp index 8d0c6458..a809fbc2 100644 --- a/src/plugin/bridges/vst3.cpp +++ b/src/plugin/bridges/vst3.cpp @@ -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),