summaryrefslogtreecommitdiff
path: root/libs/ardour/session_vst.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2017-05-09 16:31:42 +0200
committerRobin Gareus <robin@gareus.org>2017-05-09 16:31:42 +0200
commit37a4987dab2635adba2f96c2782bc030200ad3c1 (patch)
tree94e4e003c21f88c80bc5b58b3f631750f97f4596 /libs/ardour/session_vst.cc
parent4e08f5c169b73c11f775c994d413319f68fabc53 (diff)
Ardour does support VST's audioMasterGetProductString, return true;
Diffstat (limited to 'libs/ardour/session_vst.cc')
-rw-r--r--libs/ardour/session_vst.cc2
1 files changed, 1 insertions, 1 deletions
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 <ptr> with a string with product name (max 64 char)
strcpy ((char*) ptr, PROGRAM_NAME);
- return 0;
+ return 1;
case audioMasterGetVendorVersion:
SHOW_CALLBACK ("audioMasterGetVendorVersion");