diff options
author | Marvin Borner | 2021-01-08 14:51:11 +0100 |
---|---|---|
committer | Marvin Borner | 2021-01-08 14:51:11 +0100 |
commit | 01c570789d7f9ccc1521b791903c8a499b0f6323 (patch) | |
tree | e5275dbbc207db6be843df918b3944cc822d0819 /libgui/gfx.c | |
parent | 52920b03e996cf60b2665772837bfa0f1661a430 (diff) |
Kinda working VFS implementation
Diffstat (limited to 'libgui/gfx.c')
-rw-r--r-- | libgui/gfx.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libgui/gfx.c b/libgui/gfx.c index 0efedf9..3eb388a 100644 --- a/libgui/gfx.c +++ b/libgui/gfx.c @@ -51,10 +51,10 @@ static void load_font(enum font_type font_type) path = FONT_64_PATH; break; default: - break; + return; } - fonts[font_type] = psf_parse(read(path)); + fonts[font_type] = psf_parse(sread(path)); assert(fonts[font_type]); } |