mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-05-15 21:15:51 +02:00
Use simple numerical IDs for plugins in groups
We'll be using a similar approach to identify threads for event handlers.
This commit is contained in:
@@ -67,7 +67,8 @@ Vst2Bridge& get_bridge_instance(const AEffect* plugin) {
|
||||
Vst2Bridge::Vst2Bridge(boost::asio::io_context& main_context,
|
||||
std::string plugin_dll_path,
|
||||
std::string endpoint_base_dir)
|
||||
: io_context(main_context),
|
||||
: vst_plugin_path(plugin_dll_path),
|
||||
io_context(main_context),
|
||||
plugin_handle(LoadLibrary(plugin_dll_path.c_str()), FreeLibrary),
|
||||
sockets(io_context, endpoint_base_dir, false) {
|
||||
// Got to love these C APIs
|
||||
|
||||
Reference in New Issue
Block a user