From: Robin Gareus Date: Tue, 9 May 2017 14:31:42 +0000 (+0200) Subject: Ardour does support VST's audioMasterGetProductString, return true; X-Git-Tag: 5.9~60 X-Git-Url: https://main.carlh.net/gitweb/?p=ardour.git;a=commitdiff_plain;h=37a4987dab2635adba2f96c2782bc030200ad3c1 Ardour does support VST's audioMasterGetProductString, return true; --- diff --git a/libs/ardour/session_vst.cc b/libs/ardour/session_vst.cc index 5ba77a9a6e..e086bbbce0 100644 --- a/libs/ardour/session_vst.cc +++ b/libs/ardour/session_vst.cc @@ -442,7 +442,7 @@ intptr_t Session::vst_callback ( SHOW_CALLBACK ("audioMasterGetProductString"); // fills with a string with product name (max 64 char) strcpy ((char*) ptr, PROGRAM_NAME); - return 0; + return 1; case audioMasterGetVendorVersion: SHOW_CALLBACK ("audioMasterGetVendorVersion");