Allow storing and loading of larger chunks

This commit is contained in:
Robbert van der Helm
2020-04-25 17:35:02 +02:00
parent 8bb1bdeadb
commit 5ce20be9d9
2 changed files with 6 additions and 4 deletions
+1 -1
View File
@@ -64,7 +64,7 @@ PluginBridge& get_bridge_instance(const AEffect* plugin) {
PluginBridge::PluginBridge(std::string plugin_dll_path,
std::string socket_endpoint_path)
: plugin_handle(LoadLibrary(plugin_dll_path.c_str()), &FreeLibrary),
: plugin_handle(LoadLibrary(plugin_dll_path.c_str()), FreeLibrary),
io_context(),
socket_endpoint(socket_endpoint_path),
host_vst_dispatch(io_context),