From f19e7bd238d62de2e4fb80b22146dee53b798852 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Thu, 9 Aug 2012 01:06:32 +0000 Subject: [PATCH] more VST parameter debugging git-svn-id: svn://localhost/ardour2/branches/3.0@13115 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 dbc64f1ea8..3a77fc4d9f 100644 --- a/libs/ardour/vst_plugin.cc +++ b/libs/ardour/vst_plugin.cc @@ -103,7 +103,7 @@ VSTPlugin::set_parameter (uint32_t which, float val) { float v = get_parameter (which); - cerr << name() << " setting parameter #" << which << " to " << val << " current " << v << " == ? " << (v == val) << endl; + cerr << name() << " setting parameter #" << which << " to " << val << " current " << v << " == ? " << (v == val) << " delta " << std::setprecision(15) << (v - val) << endl; if (get_parameter (which) == val) { return;