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 /interface.c | |
| parent | 39bd41ad4d4832d4022a99e3cfcc49409f8b2da6 (diff) | |
| download | ttdaw-11016b0c2094cbc9918ab613dcf73aeaff9e6768.tar.gz | |
Added some interface changes
Diffstat (limited to 'interface.c')
| -rw-r--r-- | interface.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/interface.c b/interface.c index 1347ce2..867bd1e 100644 --- a/interface.c +++ b/interface.c @@ -56,7 +56,7 @@ void *interface(void *arg) { if (ret) { fprintf(stderr, "tb_init() failed with error code %d\n", ret); exit(1); - } + tb_set_input_mode(TB_INPUT_ESC | TB_INPUT_MOUSE); struct tb_event ev; @@ -64,9 +64,12 @@ void *interface(void *arg) { tb_clear(); tb_present(); + tb_set_cursor(0, tb_height()-1); + tb_hide_cursor(); + // Show currently selected soundfont. tb_printf(0, 0, TB_GREEN, 0, "Soundfont: %s", args->soundfont_file); - tb_printf(0, 1, TB_GREEN, 0, "Preset: %s", args->soundfont_preset); + tb_printf(0, 1, TB_GREEN, 0, "Preset: %d", args->soundfont_preset); tb_present(); // Draw interface. |
