diff options
Diffstat (limited to 'src/engine/MidiControlNode.cpp')
-rw-r--r-- | src/engine/MidiControlNode.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/engine/MidiControlNode.cpp b/src/engine/MidiControlNode.cpp index feae6799..e8237ba3 100644 --- a/src/engine/MidiControlNode.cpp +++ b/src/engine/MidiControlNode.cpp @@ -32,14 +32,14 @@ namespace Ingen { +static InternalPlugin controller_plugin(NS_INTERNALS "Controller", "controller", "Controller"); MidiControlNode::MidiControlNode(const string& path, bool polyphonic, PatchImpl* parent, SampleRate srate, size_t buffer_size) - : NodeBase(new InternalPlugin(NS_INGEN "control_node", "controller", "Controller") - , path, false, parent, srate, buffer_size) + : NodeBase(&controller_plugin, path, false, parent, srate, buffer_size) , _learning(false) { _ports = new Raul::Array<PortImpl*>(6); |