Revised comment

This commit is contained in:
Hanaxar 2023-04-04 20:27:35 +03:00 committed by GitHub
parent 5ee93acedc
commit 768ede2134
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1253,7 +1253,7 @@ int GetGlyphIndex(Font font, int codepoint)
// Support charsets with any characters order // Support charsets with any characters order
#define SUPPORT_UNORDERED_CHARSET #define SUPPORT_UNORDERED_CHARSET
#if defined(SUPPORT_UNORDERED_CHARSET) #if defined(SUPPORT_UNORDERED_CHARSET)
int index = GLYPH_NOTFOUND_CHAR_FALLBACK - 32; // Index of '?' character (first character is space) int index = GLYPH_NOTFOUND_CHAR_FALLBACK - 32; // Index of fallback character (first character is space)
for (int i = 0; i < font.glyphCount; i++) for (int i = 0; i < font.glyphCount; i++)
{ {