Remove trailing spaces

This commit is contained in:
Ray
2023-03-13 12:08:23 +01:00
parent 393b0d1a80
commit a7f81b06b9
5 changed files with 18 additions and 15 deletions

View File

@@ -543,8 +543,8 @@ bool IsFontReady(Font font)
(font.glyphCount > 0) && // Validate font contains some glyph
(font.recs != NULL) && // Validate font recs defining glyphs on texture atlas
(font.glyphs != NULL)); // Validate glyph data is loaded
// NOTE: Further validations could be done to verify if recs count and glyphs count
// NOTE: Further validations could be done to verify if recs count and glyphs count
// match glyphCount and to verify that data contained is valid (glyphs values, metrics...)
}