diff options
author | Marvin Borner | 2021-05-23 23:19:26 +0200 |
---|---|---|
committer | Marvin Borner | 2021-05-23 23:19:26 +0200 |
commit | cf1a6ed2998eb22b112f233d65975c27fa5ced5b (patch) | |
tree | d78e63704219a49657c6f3029d071ce746c6f932 /libs/libgui/psf.c | |
parent | 577b4f989020be27885bcd846e3c49843aa69c08 (diff) |
Added title to app bar
Diffstat (limited to 'libs/libgui/psf.c')
-rw-r--r-- | libs/libgui/psf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/libgui/psf.c b/libs/libgui/psf.c index 95678ed..5a6b1bb 100644 --- a/libs/libgui/psf.c +++ b/libs/libgui/psf.c @@ -23,7 +23,7 @@ static int psf_verify(char *data) return 0; } -struct font *psf_parse(char *data) +struct gfx_font *psf_parse(char *data) { int version = psf_verify(data); @@ -47,7 +47,7 @@ struct font *psf_parse(char *data) return NULL; } - struct font *font = malloc(sizeof(*font)); + struct gfx_font *font = malloc(sizeof(*font)); font->raw = data; font->chars = chars; font->size.x = width; |