diff options
author | Uros Majstorovic <majstor@majstor.org> | 2020-06-12 00:51:04 +0200 |
---|---|---|
committer | Uros Majstorovic <majstor@majstor.org> | 2020-06-12 00:51:04 +0200 |
commit | e5fcdeda041831cb326f1d1963c0651b78041788 (patch) | |
tree | 3763f5c596b068ec7b3a71c1db02f6c9936a3bcb /code/fe310/eos/eve/screen/font.h | |
parent | 6d868629c96f53358f1b7e2f6ac687d7b7195b35 (diff) |
implemented font metrics
Diffstat (limited to 'code/fe310/eos/eve/screen/font.h')
-rw-r--r-- | code/fe310/eos/eve/screen/font.h | 3 |
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); |