debug output formatting

This commit is contained in:
Paul Davis 2016-09-13 14:02:48 -05:00
parent e942c389a7
commit 182e35235c

View File

@ -206,7 +206,7 @@ MidiStateTracker::dump (ostream& o)
for (int x = 0; x < 128; ++x) {
if (_active_notes[c * 128 + x]) {
o << "Channel " << c+1 << " Note " << x << " is on ("
<< (int) _active_notes[c*128+x] << "times)\n";
<< (int) _active_notes[c*128+x] << " times)\n";
}
}
}