[cbdt] Fix sign bug

Was introduced in d495fc5e38
This commit is contained in:
Behdad Esfahbod 2016-12-04 18:56:24 -08:00
parent c27d6fcf8d
commit 654f9ab0d8
1 changed files with 1 additions and 1 deletions

View File

@ -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;