From e28ea65105c4afd3a3dea7d050b392565d15120d Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Wed, 17 Feb 2021 22:13:59 +0100 Subject: Started GUI rewrite It's a mess right now.. --- libgui/psf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libgui/psf.c') 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; -- cgit v1.2.3