Remove more old todos

This commit is contained in:
Robbert van der Helm
2020-04-19 16:17:18 +02:00
parent b13d7d554d
commit 1f56617abe
2 changed files with 0 additions and 4 deletions
-2
View File
@@ -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);
}
-2
View File
@@ -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;