Set mask to 0, instead of 1, by default

This shouldn't matter.
This commit is contained in:
Behdad Esfahbod 2017-08-10 19:58:05 -07:00
parent 9e005c5d86
commit f2868c2008
1 changed files with 1 additions and 1 deletions

View File

@ -267,7 +267,7 @@ hb_buffer_t::add (hb_codepoint_t codepoint,
memset (glyph, 0, sizeof (*glyph));
glyph->codepoint = codepoint;
glyph->mask = 1;
glyph->mask = 0;
glyph->cluster = cluster;
len++;