diff options
| author | Drew DeVault <sir@cmpwn.com> | 2023-09-22 14:27:12 +0200 |
|---|---|---|
| committer | Drew DeVault <sir@cmpwn.com> | 2023-09-22 14:27:12 +0200 |
| commit | 260b9effb19fe85604f05ccf0be18795fd2bc782 (patch) | |
| tree | 283fc37827b7f0c4eacd8672383ebe0c89c8cdc4 /sdl2/events.ha | |
| parent | Add SDL_CreateTextureFromSurface() (diff) | |
| download | hare-chip8-260b9effb19fe85604f05ccf0be18795fd2bc782.tar.gz | |
all: fix build errors
Diffstat (limited to 'sdl2/events.ha')
| -rw-r--r-- | sdl2/events.ha | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sdl2/events.ha b/sdl2/events.ha index beb1343..55a0a63 100644 --- a/sdl2/events.ha +++ b/sdl2/events.ha @@ -322,15 +322,15 @@ export type SDL_UserEvent = struct { SDL_CommonEvent, window_id: u32, code: i32, - data1: *void, - data2: *void, + data1: *opaque, + data2: *opaque, }; // A video driver dependent system event (event.syswm.*) // This event is disabled by default, you can enable it with [[eventstate]]. export type SDL_SysWMEvent = struct { SDL_CommonEvent, - msg: *void, // TODO + msg: *opaque, // TODO }; // General event structure |
