diff options
| author | Mitja Felicijan <mitja.felicijan@gmail.com> | 2024-10-12 18:20:45 +0200 |
|---|---|---|
| committer | Mitja Felicijan <mitja.felicijan@gmail.com> | 2024-10-12 18:20:45 +0200 |
| commit | 11016b0c2094cbc9918ab613dcf73aeaff9e6768 (patch) | |
| tree | 9abf2b75109052e242b3f0b2ea48b86345c79e8b /midi.c | |
| parent | 39bd41ad4d4832d4022a99e3cfcc49409f8b2da6 (diff) | |
| download | ttdaw-11016b0c2094cbc9918ab613dcf73aeaff9e6768.tar.gz | |
Added some interface changes
Diffstat (limited to 'midi.c')
| -rw-r--r-- | midi.c | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -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, */ |
