diff options
author | David Robillard <d@drobilla.net> | 2012-08-22 02:50:31 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-08-22 02:50:31 +0000 |
commit | ab563350eef84980362a7fda17be8f3af34bc92e (patch) | |
tree | 34898a09e42b3874d8c8ead1e92de4e3d5ae428b | |
parent | e7246221fb77b6dca1b3717f264d795e8e0f02a8 (diff) | |
download | fomp.lv2-ab563350eef84980362a7fda17be8f3af34bc92e.tar.gz fomp.lv2-ab563350eef84980362a7fda17be8f3af34bc92e.tar.bz2 fomp.lv2-ab563350eef84980362a7fda17be8f3af34bc92e.zip |
Actually instantiate the correct filter (duh).
git-svn-id: http://svn.drobilla.net/lad/trunk/plugins/fomp.lv2@4737 a436a847-0d15-0410-975c-d299462d15a1
-rw-r--r-- | src/mvclpf24_lv2.cc | 6 |
1 files changed, 3 insertions, 3 deletions
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] = { |