From d838065d32bd5088ad5cd1707d4a961c19d3daa3 Mon Sep 17 00:00:00 2001 From: wpcasarin <72427968+wpcasarin@users.noreply.github.com> Date: Sun, 18 Jan 2026 23:28:52 -0300 Subject: [PATCH] vendor/x11/xlib: Fix XSetWindowBackgroundPixmap binding name Changed SetWindowBackgroundMap to SetWindowBackgroundPixmap to match the actual X11 C function name. The incorrect name caused linker errors. --- vendor/x11/xlib/xlib_procs.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vendor/x11/xlib/xlib_procs.odin b/vendor/x11/xlib/xlib_procs.odin index c33c6d351..42e49ea02 100644 --- a/vendor/x11/xlib/xlib_procs.odin +++ b/vendor/x11/xlib/xlib_procs.odin @@ -241,7 +241,7 @@ foreign xlib { window: Window, pixel: uint, ) --- - SetWindowBackgroundMap :: proc( + SetWindowBackgroundPixmap :: proc( display: ^Display, window: Window, pixmap: Pixmap,