diff options
| author | wpcasarin <72427968+wpcasarin@users.noreply.github.com> | 2026-01-18 23:28:52 -0300 |
|---|---|---|
| committer | wpcasarin <72427968+wpcasarin@users.noreply.github.com> | 2026-01-18 23:28:52 -0300 |
| commit | d838065d32bd5088ad5cd1707d4a961c19d3daa3 (patch) | |
| tree | 0152c7b2aaae937de16c9fe83b503b380eae48c7 | |
| parent | 1f3429229608db6275696c403b96c39fab8f239e (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.
| -rw-r--r-- | vendor/x11/xlib/xlib_procs.odin | 2 |
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, |