# HG changeset patch # User Matti Hamalainen # Date 1530401742 -10800 # Node ID 5f9e8dd62c70d2017e818511641d2b1ed0d39e67 # Parent 0fddc51788ded11cc162a0a800bde6ca810f56c9 Use font general width/height for glyphs when generating from TrueType font, at least until I can figure out a working method to use metrics. diff -r 0fddc51788de -r 5f9e8dd62c70 tools/fontconv.c --- a/tools/fontconv.c Sun Jul 01 02:34:52 2018 +0300 +++ b/tools/fontconv.c Sun Jul 01 02:35:42 2018 +0300 @@ -351,8 +351,8 @@ dst.x = 0; dst.y = index * font->height; - dst.w = tmp->w; - dst.h = tmp->h; + dst.w = font->width; + dst.h = font->height; // Set glyph data glyph->width = font->width;