Set mask to 0, instead of 1, by default

This shouldn't matter.
pull/522/head
Behdad Esfahbod 8 years ago
parent 9e005c5d86
commit f2868c2008
  1. 2
      src/hb-buffer.cc

@ -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…
Cancel
Save