Set mask to 0, instead of 1, by default
This shouldn't matter.
This commit is contained in:
parent
9e005c5d86
commit
f2868c2008
|
@ -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++;
|
||||
|
|
Loading…
Reference in New Issue