aboutsummaryrefslogtreecommitdiff
path: root/libgui/psf.c
diff options
context:
space:
mode:
Diffstat (limited to 'libgui/psf.c')
-rw-r--r--libgui/psf.c4
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;