From b0d707355144544c72abb7e79b2c5195eb77bcfb Mon Sep 17 00:00:00 2001 From: Andrew Harker Date: Sun, 23 Apr 2023 14:34:35 +0100 Subject: [PATCH] Fix #274 - Adding semicolon (#275) --- src/raygui.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/raygui.h b/src/raygui.h index 5175315..58cee29 100644 --- a/src/raygui.h +++ b/src/raygui.h @@ -4054,7 +4054,7 @@ static void GuiDrawText(const char *text, Rectangle bounds, int alignment, Color } } #if defined(RAYGUI_DEBUG_TEXT_BOUNDS) - GuiDrawRectangle(bounds, 0, WHITE, Fade(RED, 0.4f)) + GuiDrawRectangle(bounds, 0, WHITE, Fade(RED, 0.4f)); #endif }