Remove comment

TEXT_SIZE and TEXT_SPACING are global values, common for all controls
This commit is contained in:
Ray
2018-12-12 11:52:47 +01:00
parent 5e903329af
commit c93dbd1af4

View File

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