diff options
| author | Alex Macafee <lxmcf20@gmail.com> | 2024-07-31 19:08:08 +1000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-31 19:08:08 +1000 |
| commit | 1f2ab84e828d058019d760f8a2549ca6158e4555 (patch) | |
| tree | 2019e7ddfca82c504aac4f1a5b60c65f0b2d90e9 | |
| parent | 92831d7ca3493d964e7883ba754d021ea5259612 (diff) | |
Use GuiControlProperty instead of c.int
| -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 cab18ff8e..bcbb364da 100644 --- a/vendor/raylib/raygui.odin +++ b/vendor/raylib/raygui.odin @@ -229,8 +229,8 @@ foreign lib { // Style set/get functions - 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 + GuiSetStyle :: proc(control: GuiControl, property: GuiControlProperty, value: c.int) --- // Set one style property + GuiGetStyle :: proc(control: GuiControl, property: GuiControlProperty) -> c.int --- // Get one style property // Styles loading functions |