vst2sdk

A clean room reverse engineering project for the VST 2.x interface
Log | Files | Refs | README | LICENSE

commit 78c190af78d7c052888a5741ce465233baaf8715
parent 6fb0fdbcc48fa93f55174cb3f7ed9492f340881c
Author: Michael Fabian 'Xaymar' Dirks <info@xaymar.com>
Date:   Tue, 12 Mar 2024 21:31:38 +0100

Remove useless return statement

Diffstat:
Mpublic.sdk/source/vst2.x/audioeffectx.cpp | 1-
1 file changed, 0 insertions(+), 1 deletion(-)

diff --git a/public.sdk/source/vst2.x/audioeffectx.cpp b/public.sdk/source/vst2.x/audioeffectx.cpp @@ -113,7 +113,6 @@ VstIntPtr AudioEffectX::control(VstInt32 opcode, VstInt32 param1, VstIntPtr para default: return AudioEffect::control(opcode, param1, param2, ptr, value); } - return 0; } VstInt32 AudioEffectX::canHostDo(char* text)