aboutsummaryrefslogtreecommitdiff
path: root/vendor/raylib/raygui.odin
diff options
context:
space:
mode:
authorGuilherme Fernandes <guifes@gmail.com>2023-08-07 18:56:27 +0100
committerGuilherme Fernandes <guifes@gmail.com>2023-08-07 22:35:30 +0100
commitaecd6b85e6f785dfdfee377355bf50f08002cf11 (patch)
tree90e1e31082a3633804c908f1a02b02e02d275b2e /vendor/raylib/raygui.odin
parent55439ef293d38a615d3d4de72d1a997c00f6d603 (diff)
Improving style
minValue: c.int, maxValue: c.int minValue, maxValue: c.int
Diffstat (limited to 'vendor/raylib/raygui.odin')
-rw-r--r--vendor/raylib/raygui.odin4
1 files changed, 2 insertions, 2 deletions
diff --git a/vendor/raylib/raygui.odin b/vendor/raylib/raygui.odin
index 0c6693787..ad36eb128 100644
--- a/vendor/raylib/raygui.odin
+++ b/vendor/raylib/raygui.odin
@@ -274,8 +274,8 @@ foreign lib {
GuiComboBox :: proc(bounds: Rectangle, text: cstring, active: ^c.int) -> c.int --- // Combo Box control, returns selected item index
GuiDropdownBox :: proc(bounds: Rectangle, text: cstring, active: ^c.int, editMode: bool) -> c.int --- // Dropdown Box control, returns selected item
- GuiSpinner :: proc(bounds: Rectangle, text: cstring, value: ^c.int, minValue: c.int, maxValue: c.int, editMode: bool) -> c.int --- // Spinner control, returns selected value
- GuiValueBox :: proc(bounds: Rectangle, text: cstring, value: ^c.int, minValue: c.int, maxValue: c.int, editMode: bool) -> c.int --- // Value Box control, updates input text with numbers
+ GuiSpinner :: proc(bounds: Rectangle, text: cstring, value: ^c.int, minValue, maxValue: c.int, editMode: bool) -> c.int --- // Spinner control, returns selected value
+ GuiValueBox :: proc(bounds: Rectangle, text: cstring, value: ^c.int, minValue, maxValue: c.int, editMode: bool) -> c.int --- // Value Box control, updates input text with numbers
GuiTextBox :: proc(bounds: Rectangle, text: cstring, textSize: c.int, editMode: bool) -> c.int --- // Text Box control, updates input text
GuiSlider :: proc(bounds: Rectangle, textLeft: cstring, textRight: cstring, value: ^f32, minValue: f32, maxValue: f32) -> c.int --- // Slider control, returns selected value