Fix typo in .dll loading error message

This commit is contained in:
Robbert van der Helm
2020-05-06 01:39:14 +02:00
parent e40f90085c
commit e4cfc8f43b
+2 -2
View File
@@ -77,8 +77,8 @@ PluginBridge::PluginBridge(std::string plugin_dll_path,
vst_host_aeffect(io_context) {
// Got to love these C APIs
if (plugin_handle == nullptr) {
throw std::runtime_error("Could not load the Windows .DLL file at'" +
plugin_dll_path + "'.");
throw std::runtime_error("Could not load the Windows .dll file at '" +
plugin_dll_path + "'");
}
// VST plugin entry point functions should be called `VSTPluginMain`, but