mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-05-10 04:30:12 +02:00
Clarify LoadLibrary() related startup error
The old message sounds too much like something that would come from Linux's dynamic linker.
This commit is contained in:
@@ -14,6 +14,7 @@ Versioning](https://semver.org/spec/v2.0.0.html).
|
|||||||
symlinking plugins. Now you can use a symlink to a copy of `libyabridge.so`
|
symlinking plugins. Now you can use a symlink to a copy of `libyabridge.so`
|
||||||
that's installed for a plugin in another directory. This is not recommended
|
that's installed for a plugin in another directory. This is not recommended
|
||||||
though. Fixes #3.
|
though. Fixes #3.
|
||||||
|
- Clarified the error that appears when we're unable to load the `.dll`.
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
|
|||||||
@@ -77,7 +77,7 @@ PluginBridge::PluginBridge(std::string plugin_dll_path,
|
|||||||
vst_host_aeffect(io_context) {
|
vst_host_aeffect(io_context) {
|
||||||
// Got to love these C APIs
|
// Got to love these C APIs
|
||||||
if (plugin_handle == nullptr) {
|
if (plugin_handle == nullptr) {
|
||||||
throw std::runtime_error("Could not load a shared library at '" +
|
throw std::runtime_error("Could not load the Windows .DLL file at'" +
|
||||||
plugin_dll_path + "'.");
|
plugin_dll_path + "'.");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user