summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2012-08-09 01:06:32 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2012-08-09 01:06:32 +0000
commitf19e7bd238d62de2e4fb80b22146dee53b798852 (patch)
tree0b4c16a77c599dd04d3ea2f6b2751fcba8b0c88a /libs
parent5ffce5b8c9af327b8680e60752ec001e30e4b001 (diff)
more VST parameter debugging
git-svn-id: svn://localhost/ardour2/branches/3.0@13115 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs')
-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 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;