commit 1b6e16a4d1d56269efa60ad6e396352b3fb85573 parent c9749c1b8c639461ed95fcb4fb7dfd3dfdd94077 Author: Brian Swetland <swetland@frotz.net> Date: Sat, 22 Jun 2013 06:13:40 -0700 mkfont: move font data / glyph origins to upper left Diffstat:
M | tools/mkfont.cc | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/mkfont.cc b/tools/mkfont.cc @@ -114,7 +114,7 @@ retry: goto retry; } info[n].x = nx; - info[n].y = ny; + info[n].y = max - ny - h; info[n].w = w - 1; info[n].h = h - 1; info[n].dx = bb.xMin;