From c5d4b505e27520a8373894a3382d529a00b6791f Mon Sep 17 00:00:00 2001 From: Nicholas Noll Date: Wed, 3 Jun 2020 15:51:10 -0700 Subject: changed from short to int in vertex --- include/libfont.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'include/libfont.h') diff --git a/include/libfont.h b/include/libfont.h index 42d160a..da44e76 100644 --- a/include/libfont.h +++ b/include/libfont.h @@ -20,11 +20,12 @@ enum font·Vcubic }; +/* fixed point */ struct font·Vertex { - short x, y; - short cx, cy; - short cx1, cy1; + slong x, y; + slong cx, cy; + slong cx1, cy1; uchar type, padding; }; -- cgit v1.2.1