summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libs/ardour/vst_plugin.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/vst_plugin.cc b/libs/ardour/vst_plugin.cc
index f1503c30e8..3c21d9f3ee 100644
--- a/libs/ardour/vst_plugin.cc
+++ b/libs/ardour/vst_plugin.cc
@@ -106,7 +106,7 @@ VSTPlugin::set_parameter (uint32_t which, float val)
cerr << name() << " setting parameter #" << which << " to " << val << " current " << v << " == ? " << (v == val) << " delta " << std::setprecision(15) << (v - val) << endl;
- if (PBD::floateq (get_parameter (which), val, 2)) {
+ if (PBD::floateq (get_parameter (which), val, 1)) {
return;
}