Prevent the skip of the glyph if it does not fit

This commit is contained in:
morturp 2013-06-26 11:42:59 +03:00
parent d79fe65878
commit 213b8e2435
1 changed files with 2 additions and 1 deletions

View File

@ -503,7 +503,8 @@ void RE_RegisterFont(const char *fontName, int pointSize, fontInfo_t *font) {
xOut = 0;
yOut = 0;
ri.Free(imageBuff);
i++;
if(i == GLYPH_END)
i++;
} else {
Com_Memcpy(&font->glyphs[i], glyph, sizeof(glyphInfo_t));
i++;