summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2019-12-18 18:00:33 -0700
committerPaul Davis <paul@linuxaudiosystems.com>2019-12-18 18:00:33 -0700
commitaa856b509c43a390b5355458c20000086b686eb1 (patch)
tree327c981a42735d86960f7e0c18114f6939949e5e
parenta73577a45a744034eb856fff7fefd1bfc8151991 (diff)
tweak debug output
-rw-r--r--libs/ardour/midi_stretch.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/midi_stretch.cc b/libs/ardour/midi_stretch.cc
index f960c10166..a250e9b869 100644
--- a/libs/ardour/midi_stretch.cc
+++ b/libs/ardour/midi_stretch.cc
@@ -135,7 +135,7 @@ MidiStretch::run (boost::shared_ptr<Region> r, Progress*)
}
#ifdef DEBUG_MIDI_STRETCH
- cout << "STRETCH " << i->time() << " TO " << (i->time() - r_start) * mtfrac << "\n";
+ cout << "STRETCH " << i->time() << " OFFSET FROM START @ " << r_start << " = " << (i->time() - r_start) << " TO " << (i->time() - r_start) * mtfrac << "\n";
#endif
const MidiModel::TimeType new_time = (i->time() - r_start) * mtfrac;