diff options
Diffstat (limited to 'src/libs/engine/LV2Node.cpp')
-rw-r--r-- | src/libs/engine/LV2Node.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libs/engine/LV2Node.cpp b/src/libs/engine/LV2Node.cpp index 9bb05f98..bd4c2737 100644 --- a/src/libs/engine/LV2Node.cpp +++ b/src/libs/engine/LV2Node.cpp @@ -151,7 +151,7 @@ LV2Node::instantiate() PortImpl* port = NULL; float* def_values = new float[num_ports]; - slv2_plugin_get_port_ranges(plug, 0, 0, def_values); + slv2_plugin_get_port_ranges_float(plug, 0, 0, def_values); for (uint32_t j=0; j < num_ports; ++j) { SLV2Port id = slv2_plugin_get_port_by_index(plug, j); |