Skip to content

Commit

Permalink
Fix lack of sound in iZotope plugins (#4095)
Browse files Browse the repository at this point in the history
  • Loading branch information
DomClark committed Jan 7, 2018
1 parent 470e3da commit 5ccd222
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/vst_base/RemoteVstPlugin.cpp
Expand Up @@ -1499,7 +1499,7 @@ intptr_t RemoteVstPlugin::hostCallback( AEffect * _effect, int32_t _opcode,
// value is 0 for input and != 0 otherwise. note: the // value is 0 for input and != 0 otherwise. note: the
// return value is 0 for <true> such that older versions // return value is 0 for <true> such that older versions
// will always return true. // will always return true.
return 1; return 0;


case audioMasterGetTime: case audioMasterGetTime:
SHOW_CALLBACK( "amc: audioMasterGetTime\n" ); SHOW_CALLBACK( "amc: audioMasterGetTime\n" );
Expand Down

0 comments on commit 5ccd222

Please sign in to comment.