vst2sdk

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

commit 6fb0fdbcc48fa93f55174cb3f7ed9492f340881c
parent 9249b6b1660aff1d1c4e36b0821c6af04af5387d
Author: Michael Fabian 'Xaymar' Dirks <info@xaymar.com>
Date:   Mon, 11 Mar 2024 20:23:27 +0100

Fix crash with editor

Diffstat:
Mpublic.sdk/source/vst2.x/aeffeditor.hpp | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/public.sdk/source/vst2.x/aeffeditor.hpp b/public.sdk/source/vst2.x/aeffeditor.hpp @@ -28,7 +28,7 @@ class AEffEditor { virtual bool getRect(ERect** rect) { - *rect = nullptr; + //*rect = nullptr; return false; } virtual bool open(void* ptr);