From e2c71e3369d191afb0bd8267846666505d5e92a7 Mon Sep 17 00:00:00 2001 From: DomClark Date: Sun, 7 Jan 2018 21:24:24 +0000 Subject: [PATCH] Fix lack of sound in iZotope plugins (#4095) --- plugins/vst_base/RemoteVstPlugin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/vst_base/RemoteVstPlugin.cpp b/plugins/vst_base/RemoteVstPlugin.cpp index f1fc673b1..1c403576e 100644 --- a/plugins/vst_base/RemoteVstPlugin.cpp +++ b/plugins/vst_base/RemoteVstPlugin.cpp @@ -1499,7 +1499,7 @@ intptr_t RemoteVstPlugin::hostCallback( AEffect * _effect, int32_t _opcode, // value is 0 for input and != 0 otherwise. note: the // return value is 0 for such that older versions // will always return true. - return 1; + return 0; case audioMasterGetTime: SHOW_CALLBACK( "amc: audioMasterGetTime\n" );