From 8752eca3288e8814aa533ba67c65bd3d9bed6260 Mon Sep 17 00:00:00 2001 From: Stephen Molloy Date: Thu, 28 Dec 2023 10:17:14 +0100 Subject: [PATCH] Better comment --- src/rtext.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rtext.c b/src/rtext.c index 681beee5c..ccf96ba1c 100644 --- a/src/rtext.c +++ b/src/rtext.c @@ -403,7 +403,7 @@ void AddNewCharsToFontEx(Font *font, const char *fileName, int fontSize, char *n bool codepointIsUnique = true; int cp = codepoints[i-font->glyphCount]; - // This loop checks for the existence for the existence of the newChars in the input Font + // This loop checks for the existence of the newChars in the input Font, and skips them if necessary for (int j = 0; j < font->glyphCount; j++) { if (cp == font->glyphs[j].value)