[cbdt] Fix sign bug

Was introduced in d495fc5e38
pull/372/head
Behdad Esfahbod 8 years ago
parent c27d6fcf8d
commit 654f9ab0d8
  1. 2
      src/hb-ot-cbdt-table.hh

@ -44,7 +44,7 @@ struct SmallGlyphMetrics
extents->x_bearing = bearingX;
extents->y_bearing = bearingY;
extents->width = width;
extents->height = height;
extents->height = -height;
}
BYTE height;

Loading…
Cancel
Save