Reviewed comments, remove article usage

This commit is contained in:
Ray
2026-06-03 21:02:59 +02:00
parent ee71f0f870
commit 2c690425c9
8 changed files with 59 additions and 59 deletions
+2 -2
View File
@@ -593,7 +593,7 @@ Font LoadFontFromMemory(const char *fileType, const unsigned char *fileData, int
return font;
}
// Check if a font is valid (font data loaded)
// Check if font is valid (font data loaded)
// WARNING: GPU texture not checked
bool IsFontValid(Font font)
{
@@ -683,7 +683,7 @@ GlyphInfo *LoadFontData(const unsigned char *fileData, int dataSize, int fontSiz
// stbtt_GetCodepointBitmapBox() -- how big the bitmap must be
// stbtt_MakeCodepointBitmap() -- renders into a provided bitmap
// Check if a glyph is available in the font
// Check if glyph is available in the font
// WARNING: if (index == 0), glyph not found, it could fallback to default .notdef glyph (if defined in font)
int index = stbtt_FindGlyphIndex(&fontInfo, cp);