From d83532d29e5503c3649fe9bb28a42b4ab7cb31e2 Mon Sep 17 00:00:00 2001 From: Laytan Laats Date: Sat, 6 Apr 2024 20:20:16 +0200 Subject: [PATCH] fix raygui `GuiFade` being renamed to `GuiSetAlpha` --- vendor/raylib/raygui.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vendor/raylib/raygui.odin b/vendor/raylib/raygui.odin index 726377dd6..41a4250a1 100644 --- a/vendor/raylib/raygui.odin +++ b/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)