From 11016b0c2094cbc9918ab613dcf73aeaff9e6768 Mon Sep 17 00:00:00 2001 From: Mitja Felicijan Date: Sat, 12 Oct 2024 18:20:45 +0200 Subject: Added some interface changes --- midi.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'midi.c') diff --git a/midi.c b/midi.c index 341df15..e0ef9b5 100644 --- a/midi.c +++ b/midi.c @@ -60,7 +60,6 @@ void *midi(void *arg) { exit(1); } - // Reading MIDI device. struct pollfd *pfds; size_t npfds; @@ -88,8 +87,8 @@ void *midi(void *arg) { shared_data.note = ev->data.note.note; shared_data.state = 1; shared_data.velocity = ev->data.note.velocity; - tb_printf(0, 3, TB_CYAN, 0, "Note: %3d", ev->data.note.note); - tb_printf(0, 4, TB_CYAN, 0, "Velocity: %3d", ev->data.note.velocity); + tb_printf(0, 3, TB_CYAN, 0, "Note: %-3d", ev->data.note.note); + tb_printf(0, 4, TB_CYAN, 0, "Velocity: %-3d", ev->data.note.velocity); tb_present(); /* printf("%3d:%-3dNote on %2d, note %d, velocity: %3d\n", */ /* ev->source.client, ev->source.port, */ -- cgit v1.2.3