diff options
| author | gingerBill <gingerBill@users.noreply.github.com> | 2024-03-09 16:52:53 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-09 16:52:53 +0000 |
| commit | 568b07473fb56a7768ba4b2c6ca081c07469ef42 (patch) | |
| tree | f16cafe03567b60dc0c68d7931e894cb36e195fd | |
| parent | 04666746d7d1196d063b4a6c425cae316707c8db (diff) | |
| parent | 36ed8fe55de0601ad4e711b1ef631f22055e572d (diff) | |
Merge pull request #3148 from IllusionMan1212/cookie-struct-fix
vendor/x11: fix "display" with no pointer in XGenericEventCookie
| -rw-r--r-- | vendor/x11/xlib/xlib_types.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/x11/xlib/xlib_types.odin b/vendor/x11/xlib/xlib_types.odin index 2411c038c..d333c3c79 100644 --- a/vendor/x11/xlib/xlib_types.odin +++ b/vendor/x11/xlib/xlib_types.odin @@ -708,7 +708,7 @@ XGenericEventCookie :: struct { type: EventType, serial: uint, send_event: b32, - display: Display, + display: ^Display, extension: i32, evtype: i32, cookie: u32, |