Fix typo in entrypoint check

This commit is contained in:
Robbert van der Helm
2020-04-09 00:40:00 +02:00
parent fa045fb770
commit aefb3e5b90
+1 -1
View File
@@ -82,7 +82,7 @@ PluginBridge::PluginBridge(std::string plugin_dll_path,
reinterpret_cast<VstEntryPoint>(reinterpret_cast<size_t>(
GetProcAddress(plugin_handle.get(), name)));
if (name != nullptr) {
if (vst_entry_point != nullptr) {
break;
}
}