summaryrefslogtreecommitdiffstats
path: root/src/engine/LADSPAPlugin.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/LADSPAPlugin.cpp')
-rw-r--r--src/engine/LADSPAPlugin.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/engine/LADSPAPlugin.cpp b/src/engine/LADSPAPlugin.cpp
index 44df77b0..dd95bfbe 100644
--- a/src/engine/LADSPAPlugin.cpp
+++ b/src/engine/LADSPAPlugin.cpp
@@ -58,7 +58,8 @@ LADSPAPlugin::get_property(const Raul::URI& uri) const
NodeImpl*
-LADSPAPlugin::instantiate(const string& name,
+LADSPAPlugin::instantiate(BufferFactory& bufs,
+ const string& name,
bool polyphonic,
Ingen::PatchImpl* parent,
Engine& engine)
@@ -97,7 +98,7 @@ LADSPAPlugin::instantiate(const string& name,
if (descriptor != NULL) {
n = new LADSPANode(this, name, polyphonic, parent, descriptor, srate, buffer_size);
- if ( ! n->instantiate() ) {
+ if ( ! n->instantiate(bufs) ) {
delete n;
n = NULL;
}