Remove debug prints when opening VST2 editors

This commit is contained in:
Robbert van der Helm
2022-09-29 19:21:31 +02:00
parent 87a9ac75b9
commit 48a3c76fe6
2 changed files with 1 additions and 2 deletions
+1
View File
@@ -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
-2
View File
@@ -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);
}