summaryrefslogtreecommitdiff
path: root/code/fe310/eos/eve/screen/font.h
diff options
context:
space:
mode:
authorUros Majstorovic <majstor@majstor.org>2020-06-12 00:51:04 +0200
committerUros Majstorovic <majstor@majstor.org>2020-06-12 00:51:04 +0200
commite5fcdeda041831cb326f1d1963c0651b78041788 (patch)
tree3763f5c596b068ec7b3a71c1db02f6c9936a3bcb /code/fe310/eos/eve/screen/font.h
parent6d868629c96f53358f1b7e2f6ac687d7b7195b35 (diff)
implemented font metrics
Diffstat (limited to 'code/fe310/eos/eve/screen/font.h')
-rw-r--r--code/fe310/eos/eve/screen/font.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/code/fe310/eos/eve/screen/font.h b/code/fe310/eos/eve/screen/font.h
index 24b745e..a46c942 100644
--- a/code/fe310/eos/eve/screen/font.h
+++ b/code/fe310/eos/eve/screen/font.h
@@ -2,8 +2,9 @@
typedef struct EVEFont {
uint8_t id;
- uint8_t w[128];
+ uint8_t w;
uint8_t h;
+ uint8_t w_ch[128];
} EVEFont;
void eve_font_init(EVEFont *font, uint8_t font_id);