From a9b7a6a8356b64dec25dcb4d2e2a9a9e30e2d5a2 Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Tue, 1 Dec 2020 23:55:51 +0100 Subject: [PATCH] List VST3 support in the initialization message --- src/plugin/bridges/vst2.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/plugin/bridges/vst2.cpp b/src/plugin/bridges/vst2.cpp index 7944a29c..359aefc6 100644 --- a/src/plugin/bridges/vst2.cpp +++ b/src/plugin/bridges/vst2.cpp @@ -706,7 +706,10 @@ void Vst2PluginBridge::log_init_message() { #ifdef WITH_WINEDBG init_msg << "- winedbg" << std::endl; #endif -#if !(defined(WITH_BITBRIDGE) || defined(WITH_WINEDBG)) +#ifdef WITH_VST3 + init_msg << "- VST3 support" << std::endl; +#endif +#if !(defined(WITH_BITBRIDGE) || defined(WITH_WINEDBG) || defined(WITH_VST3)) init_msg << " " << std::endl; #endif init_msg << std::endl;