From 3d07cbc37ffe9768f3cf568531cb38b5bf5a3fce Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Thu, 9 Aug 2012 15:57:04 +0000 Subject: [PATCH] VST parameter setting tweak git-svn-id: svn://localhost/ardour2/branches/3.0@13118 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/ardour/vst_plugin.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }