diff options
| author | Guilherme Fernandes <guifes@gmail.com> | 2023-08-07 18:38:11 +0100 |
|---|---|---|
| committer | Guilherme Fernandes <guifes@gmail.com> | 2023-08-07 22:26:18 +0100 |
| commit | 489fb087a4af3deb5973e2223e009e5b8a016d5c (patch) | |
| tree | 4e8e947dfc448d5a630be22b7dab01501c0ad274 | |
| parent | ff904ae17401bf7bccc9bb271833c2f0489cf129 (diff) | |
Fixing identation to use tabs
| -rw-r--r-- | vendor/raylib/raygui.odin | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/vendor/raylib/raygui.odin b/vendor/raylib/raygui.odin index 937d44271..76151e470 100644 --- a/vendor/raylib/raygui.odin +++ b/vendor/raylib/raygui.odin @@ -44,10 +44,10 @@ GuiStyleProp :: struct { // Gui control state GuiState :: enum c.int { - STATE_NORMAL = 0, + STATE_NORMAL = 0, STATE_FOCUSED, - STATE_PRESSED, - STATE_DISABLED, + STATE_PRESSED, + STATE_DISABLED, } // Gui control text alignment |