[font] Fix a MSVC "error"
Oh well. Fixes https://github.com/harfbuzz/harfbuzz/issues/4122
This commit is contained in:
parent
b41efb6c4d
commit
946477fa54
|
@ -2489,7 +2489,7 @@ hb_font_set_synthetic_bold (hb_font_t *font,
|
||||||
|
|
||||||
if (font->x_embolden == x_embolden &&
|
if (font->x_embolden == x_embolden &&
|
||||||
font->y_embolden == y_embolden &&
|
font->y_embolden == y_embolden &&
|
||||||
font->embolden_in_place == in_place)
|
font->embolden_in_place == (bool) in_place)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
font->serial++;
|
font->serial++;
|
||||||
|
|
Loading…
Reference in New Issue