From c39b2c29f12c604ed2fd36484a19d176603c589c Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 12 Mar 2007 22:50:13 +0000 Subject: Fixed MIDI note off normalization for multiple channels. git-svn-id: http://svn.drobilla.net/lad/raul@359 a436a847-0d15-0410-975c-d299462d15a1 --- tests/smf_test.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests') diff --git a/tests/smf_test.cpp b/tests/smf_test.cpp index d4e5411..3396b90 100644 --- a/tests/smf_test.cpp +++ b/tests/smf_test.cpp @@ -47,8 +47,8 @@ main(int argc, char** argv) uint32_t ev_delta_time; while (reader.read_event(4, buf, &ev_size, &ev_delta_time) >= 0) { - cout << "\n\nEvent, size = " << ev_size << ", time = " << ev_delta_time; - cout << ", data = "; + cout << "Event, size = " << ev_size << ", time = " << ev_delta_time; + cout << ":\t"; cout.flags(ios::hex); for (uint32_t i=0; i < ev_size; ++i) { cout << "0x" << (int)buf[i] << " "; -- cgit v1.2.1