aboutsummaryrefslogtreecommitdiff
path: root/event-basic.c
diff options
context:
space:
mode:
authorRandy Palamar <randy@rnpnr.xyz>2024-05-12 12:35:48 -0600
committerRandy Palamar <randy@rnpnr.xyz>2024-05-21 20:21:46 -0600
commit486e8631ce9269d34c00c07038e04013640f8825 (patch)
tree2123a90bdc2f564df72d509161b098c95d6aac13 /event-basic.c
parent54b3babf49ac75fce78815ae1d7a19f3def69660 (diff)
downloadvis-486e8631ce9269d34c00c07038e04013640f8825.tar.gz
vis-486e8631ce9269d34c00c07038e04013640f8825.tar.xz
replace UiTerm with Ui & delete function pointers
Diffstat (limited to 'event-basic.c')
-rw-r--r--event-basic.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/event-basic.c b/event-basic.c
index 6d298b5..cb2d2c1 100644
--- a/event-basic.c
+++ b/event-basic.c
@@ -6,7 +6,7 @@
bool vis_event_emit(Vis *vis, enum VisEvents id, ...) {
if (!vis->initialized) {
vis->initialized = true;
- vis->ui->init(vis->ui, vis);
+ ui_init(vis->ui, vis);
}
va_list ap;