From ab563350eef84980362a7fda17be8f3af34bc92e Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 22 Aug 2012 02:50:31 +0000 Subject: Actually instantiate the correct filter (duh). git-svn-id: http://svn.drobilla.net/lad/trunk/plugins/fomp.lv2@4737 a436a847-0d15-0410-975c-d299462d15a1 --- src/mvclpf24_lv2.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/mvclpf24_lv2.cc') diff --git a/src/mvclpf24_lv2.cc b/src/mvclpf24_lv2.cc index 1c36a54..dbd8b51 100644 --- a/src/mvclpf24_lv2.cc +++ b/src/mvclpf24_lv2.cc @@ -69,7 +69,7 @@ instantiate2(const LV2_Descriptor* descriptor, const char* bundle_path, const LV2_Feature* const* features) { - return new Ladspa_Moogvcf1(rate); + return new Ladspa_Moogvcf2(rate); } static LV2_Handle instantiate3(const LV2_Descriptor* descriptor, @@ -77,7 +77,7 @@ instantiate3(const LV2_Descriptor* descriptor, const char* bundle_path, const LV2_Feature* const* features) { - return new Ladspa_Moogvcf1(rate); + return new Ladspa_Moogvcf3(rate); } static LV2_Handle instantiate4(const LV2_Descriptor* descriptor, @@ -85,7 +85,7 @@ instantiate4(const LV2_Descriptor* descriptor, const char* bundle_path, const LV2_Feature* const* features) { - return new Ladspa_Moogvcf1(rate); + return new Ladspa_Moogvcf4(rate); } static const LV2_Descriptor descriptors[4] = { -- cgit v1.2.1