diff options
| author | Alex Macafee <lxmcf20@gmail.com> | 2024-07-31 18:48:16 +1000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-31 18:48:16 +1000 |
| commit | f33b4ecd3ee04d3f42e754574ebcd42e8c4ef572 (patch) | |
| tree | 72ac6a1887e67c7e008bab8bf61096e229b3a4b0 /vendor/raylib | |
| parent | 62191f54a0a7c00c98706251677d9130b8cbabec (diff) | |
Update Raygui Style set/get functions
Diffstat (limited to 'vendor/raylib')
| -rw-r--r-- | vendor/raylib/raygui.odin | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vendor/raylib/raygui.odin b/vendor/raylib/raygui.odin index 8cda9c072..8a9d4d7cd 100644 --- a/vendor/raylib/raygui.odin +++ b/vendor/raylib/raygui.odin @@ -236,8 +236,8 @@ foreign lib { // Style set/get functions - GuiSetStyle :: proc(control: GuiControl, property: GuiStyleProp, value: c.int) --- // Set one style property - GuiGetStyle :: proc(control: GuiControl, property: GuiStyleProp) -> c.int --- // Get one style property + GuiSetStyle :: proc(control: GuiControl, property: c.int, value: c.int) --- // Set one style property + GuiGetStyle :: proc(control: GuiControl, property: c.int) -> c.int --- // Get one style property // Styles loading functions |