13
0

Set rate and blocksize for multi-instance VSTs

This commit is contained in:
Robin Gareus 2017-01-13 11:29:10 +01:00
parent 38e47c2f5f
commit 126dd02c85
3 changed files with 6 additions and 0 deletions

View File

@ -63,6 +63,8 @@ LXVSTPlugin::LXVSTPlugin (const LXVSTPlugin &other)
other.add_state (root);
set_state (*root, Stateful::loading_state_version);
delete root;
set_plugin (_state->plugin);
}
LXVSTPlugin::~LXVSTPlugin ()

View File

@ -63,6 +63,8 @@ MacVSTPlugin::MacVSTPlugin (const MacVSTPlugin &other)
other.add_state (root);
set_state (*root, Stateful::loading_state_version);
delete root;
set_plugin (_state->plugin);
}
MacVSTPlugin::~MacVSTPlugin ()

View File

@ -62,6 +62,8 @@ WindowsVSTPlugin::WindowsVSTPlugin (const WindowsVSTPlugin &other)
other.add_state (root);
set_state (*root, Stateful::loading_state_version);
delete root;
set_plugin (_state->plugin);
}
WindowsVSTPlugin::~WindowsVSTPlugin ()