From ba248d0952a805b6c2e226fee068d8445a5824f2 Mon Sep 17 00:00:00 2001 From: ColleagueRiley Date: Sat, 11 Jan 2025 21:51:42 -0500 Subject: [PATCH] update RGFW --- examples/deps/RGFW.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/deps/RGFW.h b/examples/deps/RGFW.h index 1bb1e39..7102cd2 100644 --- a/examples/deps/RGFW.h +++ b/examples/deps/RGFW.h @@ -2922,7 +2922,7 @@ RGFW_window* RGFW_createWindowPtr(const char* name, RGFW_rect rect, RGFW_windowF } if (flags & RGFW_windowNoResize) { /* make it so the user can't resize the window*/ - XSizeHints sh = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}; + XSizeHints sh = {0, 0, 0, 0, {0, 0}, {0, 0}, 0, 0, 0}; sh.flags = (1L << 4) | (1L << 5); sh.min_width = sh.max_width = win->r.w; sh.min_height = sh.max_height = win->r.h;