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); }