diff options
author | Marvin Borner | 2021-02-17 22:13:59 +0100 |
---|---|---|
committer | Marvin Borner | 2021-02-18 18:03:43 +0100 |
commit | e28ea65105c4afd3a3dea7d050b392565d15120d (patch) | |
tree | f3c1eaf8c4da5d71893355db1779d73d98f68d2f /libgui/psf.c | |
parent | b32cb0a22db893c106cb86ca0f1178d5da05b551 (diff) |
Started GUI rewrite
It's a mess right now..
Diffstat (limited to 'libgui/psf.c')
-rw-r--r-- | libgui/psf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libgui/psf.c b/libgui/psf.c index f7271a8..655fb07 100644 --- a/libgui/psf.c +++ b/libgui/psf.c @@ -52,8 +52,8 @@ struct font *psf_parse(char *data) struct font *font = malloc(sizeof(*font)); font->chars = chars; - font->height = height; - font->width = width; + font->size.x = width; + font->size.y = height; font->char_size = char_size; return font; |