From 43ecc5721251c968b1fad47019df20ee4b450533 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 21 Sep 2018 00:53:18 +0200 Subject: Use jalv_ui_write() universally --- src/jalv.c | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) (limited to 'src/jalv.c') diff --git a/src/jalv.c b/src/jalv.c index d25a8b2..f7c1e29 100644 --- a/src/jalv.c +++ b/src/jalv.c @@ -515,13 +515,13 @@ jalv_ui_is_resizable(Jalv* jalv) } void -jalv_ui_write(SuilController controller, +jalv_ui_write(void* const jalv_handle, uint32_t port_index, uint32_t buffer_size, uint32_t protocol, const void* buffer) { - Jalv* const jalv = (Jalv*)controller; + Jalv* const jalv = (Jalv*)jalv_handle; if (protocol != 0 && protocol != jalv->urids.atom_eventTransfer) { fprintf(stderr, "UI write with unsupported protocol %d (%s)\n", @@ -722,12 +722,7 @@ jalv_update(Jalv* jalv) free(str); } - if (jalv->ui_instance) { - suil_instance_port_event(jalv->ui_instance, ev.index, - ev.size, ev.protocol, buf); - } else { - jalv_ui_port_event(jalv, ev.index, ev.size, ev.protocol, buf); - } + jalv_ui_port_event(jalv, ev.index, ev.size, ev.protocol, buf); if (ev.protocol == 0 && jalv->opts.print_controls) { print_control_value(jalv, &jalv->ports[ev.index], *(float*)buf); -- cgit v1.2.1