more VST parameter debugging

git-svn-id: svn://localhost/ardour2/branches/3.0@13115 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2012-08-09 01:06:32 +00:00
parent 5ffce5b8c9
commit f19e7bd238

View file

@ -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;