From c93dbd1af41d3f858f9410729ab29dbfa6478ea2 Mon Sep 17 00:00:00 2001 From: Ray Date: Wed, 12 Dec 2018 11:52:47 +0100 Subject: [PATCH] Remove comment TEXT_SIZE and TEXT_SPACING are global values, common for all controls --- src/raygui.h | 1 - 1 file changed, 1 deletion(-) diff --git a/src/raygui.h b/src/raygui.h index b5b92fa..8773346 100644 --- a/src/raygui.h +++ b/src/raygui.h @@ -483,7 +483,6 @@ static void GuiDrawText(const char *text, int posX, int posY, Color tint) { if (guiFont.texture.id == 0) guiFont = GetFontDefault(); - // TODO: Support custom TEXT_SIZE and TEXT_SPACING by control DrawTextEx(guiFont, text, (Vector2){ posX, posY }, GuiGetStyle(DEFAULT, TEXT_SIZE), GuiGetStyle(DEFAULT, TEXT_SPACING), tint); }