summaryrefslogtreecommitdiffstats
path: root/src/libs/engine/LADSPANode.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/engine/LADSPANode.cpp')
-rw-r--r--src/libs/engine/LADSPANode.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libs/engine/LADSPANode.cpp b/src/libs/engine/LADSPANode.cpp
index ae35cd43..dd3ce0c2 100644
--- a/src/libs/engine/LADSPANode.cpp
+++ b/src/libs/engine/LADSPANode.cpp
@@ -300,7 +300,7 @@ LADSPANode::get_port_limits(unsigned long port_index,
* float greater than 1.0. So, if lower is < FLT_EPSILON, it will be 1.0
* and the logarithmic control will have a base of 1 and thus not change
*/
- if (lower < FLT_EPSILON) lower = FLT_EPSILON;
+ if (lower.get() < FLT_EPSILON) lower = FLT_EPSILON;
}