From 4fb2f1a19cf9a6ebb919e4940558f8abb06b4d13 Mon Sep 17 00:00:00 2001 From: Jacob Dennis Date: Thu, 20 Jan 2022 09:41:06 +0000 Subject: [PATCH] Fixed implementation signature of GuiScrollPanel (#174) Added the new text parameter to the signature for the implementation of GuiScrollPanel --- src/raygui.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/raygui.h b/src/raygui.h index ecb6f2d..0a9b653 100644 --- a/src/raygui.h +++ b/src/raygui.h @@ -1451,7 +1451,7 @@ void GuiPanel(Rectangle bounds, const char *text) } // Scroll Panel control -Rectangle GuiScrollPanel(Rectangle bounds, Rectangle content, Vector2 *scroll) +Rectangle GuiScrollPanel(Rectangle bounds, const char *text, Rectangle content, Vector2 *scroll) { GuiControlState state = guiState;