Browse Source

Merge pull request #3388 from laytan/fix-raygui-symbol

fix raygui `GuiFade` being renamed to `GuiSetAlpha`
gingerBill 1 year ago
parent
commit
2bb20a2c1c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      vendor/raylib/raygui.odin

+ 1 - 1
vendor/raylib/raygui.odin

@@ -251,7 +251,7 @@ foreign lib {
 	GuiDisable          :: proc() ---                                                                         // Disable gui controls (global state)
 	GuiUnlock           :: proc() ---                                                                         // Unlock gui controls (global state)
 	GuiIsLocked         :: proc() -> bool ---                                                                 // Check if gui is locked (global state)
-	GuiFade             :: proc(alpha: f32) ---                                                               // Set gui controls alpha (global state), alpha goes from 0.0f to 1.0f
+	GuiSetAlpha         :: proc(alpha: f32) ---                                                               // Set gui controls alpha (global state), alpha goes from 0.0f to 1.0f
 	GuiSetState         :: proc(state: c.int) ---                                                             // Set gui state (global state)
 	GuiGetState         :: proc() -> c.int ---                                                                // Get gui state (global state)