From d4b82a449a511baea885cb86bc593d1f592d2ebd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Ma=C5=A1karinec?= Date: Tue, 30 Jan 2024 13:57:45 +0100 Subject: [PATCH] Fix incorrect struct literal --- src/window.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/window.c b/src/window.c index 204eb213..56a4f0c7 100644 --- a/src/window.c +++ b/src/window.c @@ -90,7 +90,7 @@ frame() } } - thg->mouse_delta = (th_vf2){}; + thg->mouse_delta = (th_vf2){{0}}; th_input_cycle(); th_canvas_flush();