[util] Default font-funcs to 'ot' instead of 'ft'

This commit is contained in:
Behdad Esfahbod 2022-02-08 18:20:59 -06:00
parent 9cc9ffe352
commit 640b6ffddd
1 changed files with 1 additions and 1 deletions

View File

@ -74,10 +74,10 @@ static struct supported_font_funcs_t {
void (*func) (hb_font_t *);
} supported_font_funcs[] =
{
{"ot", hb_ot_font_set_funcs},
#ifdef HAVE_FREETYPE
{"ft", hb_ft_font_set_funcs},
#endif
{"ot", hb_ot_font_set_funcs},
};