aboutsummaryrefslogtreecommitdiffstats
path: root/src/state.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2022-08-10 13:09:15 -0400
committerDavid Robillard <d@drobilla.net>2022-08-17 13:50:59 -0400
commite3c955522472d147e5c01d55936cdf459b3df9fb (patch)
tree6c36339ab774d49453114bdb173f1c998468055b /src/state.c
parent32b02177111d9092fb87a3b496c75d242c4be9cb (diff)
downloadjalv-e3c955522472d147e5c01d55936cdf459b3df9fb.tar.gz
jalv-e3c955522472d147e5c01d55936cdf459b3df9fb.tar.bz2
jalv-e3c955522472d147e5c01d55936cdf459b3df9fb.zip
Clarify communication function names
Diffstat (limited to 'src/state.c')
-rw-r--r--src/state.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/state.c b/src/state.c
index c6037f3..5b57026 100644
--- a/src/state.c
+++ b/src/state.c
@@ -155,7 +155,7 @@ set_port_value(const char* port_symbol,
port->control = fvalue;
} else {
// Send value to running plugin
- jalv_ui_write(jalv, port->index, sizeof(fvalue), 0, &fvalue);
+ jalv_send_to_plugin(jalv, port->index, sizeof(fvalue), 0, &fvalue);
}
if (jalv->has_ui) {