Remove trail spaces

This commit is contained in:
Ray 2021-06-13 17:08:30 +02:00
parent d875891a3c
commit 4b93feb172
7 changed files with 91 additions and 91 deletions

View file

@ -849,7 +849,7 @@ void DrawText(const char *text, int posX, int posY, int fontSize, Color color)
void DrawTextEx(Font font, const char *text, Vector2 position, float fontSize, float spacing, Color tint)
{
if (font.texture.id == 0) font = GetFontDefault(); // Security check in case of not valid font
int length = TextLength(text); // Total length in bytes of the text, scanned by codepoints in loop
int textOffsetY = 0; // Offset between lines (on line break '\n')