From 48a3c76fe6e4e8b6d0ace17e4e29058b41e999de Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Thu, 29 Sep 2022 19:21:31 +0200 Subject: [PATCH] Remove debug prints when opening VST2 editors --- CHANGELOG.md | 1 + src/wine-host/bridges/vst2.cpp | 2 -- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8917c9f8..6b67807e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,7 @@ TODO: Mention CLAP. Because, you know, kinda important new feature. - Fixed a minor memory leak in the Wine->X11 drag-and-drop implementation when converting Windows file paths. +- Removed leftover debug prints when opening VST2 editor. ### yabridgectl diff --git a/src/wine-host/bridges/vst2.cpp b/src/wine-host/bridges/vst2.cpp index cc7a7d44..6cf5f45e 100644 --- a/src/wine-host/bridges/vst2.cpp +++ b/src/wine-host/bridges/vst2.cpp @@ -755,8 +755,6 @@ intptr_t Vst2Bridge::dispatch_wrapper(AEffect* plugin, VstRect* editor_rect = nullptr; plugin->dispatcher(plugin, effEditGetRect, 0, 0, &editor_rect, 0.0); if (editor_rect) { - std::cerr << editor_rect->right << std::endl; - std::cerr << editor_rect->bottom << std::endl; editor_->resize(editor_rect->right - editor_rect->left, editor_rect->bottom - editor_rect->top); }