aboutsummaryrefslogtreecommitdiff
path: root/vendor
diff options
context:
space:
mode:
authorwpcasarin <72427968+wpcasarin@users.noreply.github.com>2026-01-18 23:28:52 -0300
committerwpcasarin <72427968+wpcasarin@users.noreply.github.com>2026-01-18 23:28:52 -0300
commitd838065d32bd5088ad5cd1707d4a961c19d3daa3 (patch)
tree0152c7b2aaae937de16c9fe83b503b380eae48c7 /vendor
parent1f3429229608db6275696c403b96c39fab8f239e (diff)
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.
Diffstat (limited to 'vendor')
-rw-r--r--vendor/x11/xlib/xlib_procs.odin2
1 files changed, 1 insertions, 1 deletions
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,