* src/sfntfont.c (sfntfont_open): Don't round underline position
or thickness, much as the other font drivers don't either.
else
{
font_info->font.underline_position
- = sfnt_coerce_fixed (SFNT_CEIL_FIXED (-desc->underline_position
- * font_info->scale));
+ = sfnt_coerce_fixed (-desc->underline_position
+ * font_info->scale);
font_info->font.underline_thickness
- = sfnt_coerce_fixed (SFNT_CEIL_FIXED (desc->underline_thickness
- * font_info->scale));
+ = sfnt_coerce_fixed (desc->underline_thickness
+ * font_info->scale);
}
/* Now try to set up grid fitting for this font. */