From af50ce8066ba9ce288d0724707f06e7a88b00f84 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 12 Oct 2008 19:58:33 +0000 Subject: Remove meaningless/non-LV2/kludgey 'event' 'midi' and 'osc' distinction. Expose event ports to jack midi, again. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1665 a436a847-0d15-0410-975c-d299462d15a1 --- src/client/DeprecatedLoader.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/client') diff --git a/src/client/DeprecatedLoader.cpp b/src/client/DeprecatedLoader.cpp index 29172cee..6284d42c 100644 --- a/src/client/DeprecatedLoader.cpp +++ b/src/client/DeprecatedLoader.cpp @@ -470,10 +470,10 @@ DeprecatedLoader::load_node(const Path& parent, xmlDocPtr doc, const xmlNodePtr _engine->new_port(path, 0, "lv2:ControlPort", true); is_port = true; } else if (plugin_label == "midi_input") { - _engine->new_port(path, 0, "ingen:MIDIPort", false); + _engine->new_port(path, 0, "ingen:EventPort", false); is_port = true; } else if (plugin_label == "midi_output" ) { - _engine->new_port(path, 0, "ingen:MIDIPort", true); + _engine->new_port(path, 0, "ingen:EventPort", true); is_port = true; } else { cerr << "WARNING: Unknown internal plugin label \"" << plugin_label << "\"" << endl; -- cgit v1.2.1