From 1f56617abe6397c2084059ce1b004bd4b56dc722 Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Sun, 19 Apr 2020 16:17:18 +0200 Subject: [PATCH] Remove more old todos --- src/plugin/host-bridge.cpp | 2 -- src/plugin/plugin.cpp | 2 -- 2 files changed, 4 deletions(-) diff --git a/src/plugin/host-bridge.cpp b/src/plugin/host-bridge.cpp index 79f858b6..4ea6f798 100644 --- a/src/plugin/host-bridge.cpp +++ b/src/plugin/host-bridge.cpp @@ -167,8 +167,6 @@ HostBridge::HostBridge(audioMasterCallback host_callback) // Read the plugin's information from the Wine process. This can only be // done after we started accepting host callbacks as the plugin might do // this during initialization. - // XXX: If the plugin has crashed then this read should fail instead of - // blocking indefinitely, check if this is the case plugin = read_object(vst_host_aeffect, plugin); } diff --git a/src/plugin/plugin.cpp b/src/plugin/plugin.cpp index aa00cecb..07e8569a 100644 --- a/src/plugin/plugin.cpp +++ b/src/plugin/plugin.cpp @@ -53,8 +53,6 @@ VST_EXPORT AEffect* VSTPluginMain(audioMasterCallback host_callback) { // received. HostBridge* bridge = new HostBridge(host_callback); - // TODO: Debug print information about the loaded plugin - return &bridge->plugin; } catch (const std::exception& error) { std::cerr << "Error during initialization:" << std::endl;