summaryrefslogtreecommitdiff
path: root/libs/evoral
diff options
context:
space:
mode:
authornick_m <mainsbridge@gmail.com>2015-10-05 02:58:03 +1100
committernick_m <mainsbridge@gmail.com>2015-10-20 00:53:29 +1100
commit4dcd22fadf862b179d79435adf7d83d8be29cf47 (patch)
tree1714984579a83015c1ebf4917582f2f41bbe1fb3 /libs/evoral
parentbe1396d06626c12c7da85dcd076c8959fd2ccd24 (diff)
Update ContrilList debug output.
Diffstat (limited to 'libs/evoral')
-rw-r--r--libs/evoral/src/ControlList.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/evoral/src/ControlList.cpp b/libs/evoral/src/ControlList.cpp
index c96bcc2d94..d0e1df9ad9 100644
--- a/libs/evoral/src/ControlList.cpp
+++ b/libs/evoral/src/ControlList.cpp
@@ -587,7 +587,7 @@ ControlList::add (double when, double value, bool with_guards, bool with_initial
if (_desc.toggled) {
const double opp_val = ((value < 0.5) ? 1.0 : 0.0);
_events.insert (_events.end(), new ControlEvent (0, opp_val));
- DEBUG_TRACE (DEBUG::ControlList, string_compose ("@%1 added bool value %2 at zero\n", this, opp_val));
+ DEBUG_TRACE (DEBUG::ControlList, string_compose ("@%1 added toggled value %2 at zero\n", this, opp_val));
} else {
_events.insert (_events.end(), new ControlEvent (0, value));