diff options
| author | IllusionMan1212 <hisham.abourgheba@gmail.com> | 2024-01-29 05:54:14 +0200 |
|---|---|---|
| committer | IllusionMan1212 <hisham.abourgheba@gmail.com> | 2024-01-29 05:54:14 +0200 |
| commit | 36ed8fe55de0601ad4e711b1ef631f22055e572d (patch) | |
| tree | fe9effd708183c260121f888ba1ff1485c2f7b15 | |
| parent | a78f062499c7f0112558872a500904e6fbc6761b (diff) | |
vendor/x11: change display to be a ^Display in XGenericEventCookie struct
| -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, |