Fixed implementation signature of GuiScrollPanel (#174)

Added the new text parameter to the signature for the implementation of GuiScrollPanel
This commit is contained in:
Jacob Dennis
2022-01-20 09:41:06 +00:00
committed by GitHub
parent 042df8f004
commit 4fb2f1a19c

View File

@ -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;