fix incorrect width calculation with missing characters in font

This commit is contained in:
David Rose 2003-01-31 21:43:56 +00:00
parent 0f8ef38cc9
commit c37acce234

View File

@ -1026,7 +1026,8 @@ measure_row(wstring::iterator &si, const wstring::iterator &send,
const TextGlyph *glyph;
float glyph_scale;
if (font->get_glyph(character, glyph, glyph_scale)) {
font->get_glyph(character, glyph, glyph_scale);
if (glyph != (TextGlyph *)NULL) {
xpos += glyph->get_advance() * glyph_scale;
}
}