aboutsummaryrefslogtreecommitdiff
path: root/include/libfont.h
diff options
context:
space:
mode:
authorNicholas Noll <nbnoll@eml.cc>2020-06-03 15:51:10 -0700
committerNicholas Noll <nbnoll@eml.cc>2020-06-03 15:51:10 -0700
commitc5d4b505e27520a8373894a3382d529a00b6791f (patch)
tree9183309de3ce32516d72858b7af3ecb826021184 /include/libfont.h
parentd1f071bf9aa394525745f0b4f582f97112ece26e (diff)
changed from short to int in vertex
Diffstat (limited to 'include/libfont.h')
-rw-r--r--include/libfont.h7
1 files changed, 4 insertions, 3 deletions
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;
};