Print exceptions thrown during initialization

This commit is contained in:
Robbert van der Helm
2020-02-09 17:52:23 +01:00
parent b6c9acc57c
commit 73256d0055
+7
View File
@@ -46,6 +46,7 @@ Bridge& get_bridge_instance(const AEffect& plugin) {
* opcode from the VST host (i.e. opcode 1).`
*/
VST_EXPORT AEffect* VSTPluginMain(audioMasterCallback /*audioMaster*/) {
try {
Bridge* bridge = new Bridge();
AEffect* plugin = new AEffect();
@@ -63,6 +64,12 @@ VST_EXPORT AEffect* VSTPluginMain(audioMasterCallback /*audioMaster*/) {
plugin->uniqueID = 69420;
return plugin;
} catch (const std::exception& error) {
std::cerr << "Error during initialization:" << std::endl;
std::cerr << error.what() << std::endl;
return nullptr;
}
}
// The below functions are proxy functions for the methods defined in