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

View file

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