diff options
| author | gingerBill <gingerBill@users.noreply.github.com> | 2025-12-09 10:44:38 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-12-09 10:44:38 +0000 |
| commit | fd19092850816b08a2e5aade9adf2eaa1012e50c (patch) | |
| tree | 9a568c0b5a6ac68f21a47017fc2b6c7634de7ee0 | |
| parent | 1fe6e36faff00b291273e08854c4a7f2d2394be9 (diff) | |
| parent | 739bffac0c2d9827c84f0a13c7d8c93a3ed5d742 (diff) | |
Merge pull request #5995 from RobinsAviary/master
(SDL2) Use multi-pointer so you can pass array
| -rw-r--r-- | vendor/sdl2/sdl_messagebox.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/sdl2/sdl_messagebox.odin b/vendor/sdl2/sdl_messagebox.odin index edd8422e0..5211affd8 100644 --- a/vendor/sdl2/sdl_messagebox.odin +++ b/vendor/sdl2/sdl_messagebox.odin @@ -66,7 +66,7 @@ MessageBoxData :: struct { message: cstring, /**< UTF-8 message text */ numbuttons: c.int, - buttons: ^MessageBoxButtonData, + buttons: [^]MessageBoxButtonData, colorScheme: ^MessageBoxColorScheme, /**< ::SDL_MessageBoxColorScheme, can be NULL to use system settings */ } |