aboutsummaryrefslogtreecommitdiff
path: root/libgui/gfx.c
diff options
context:
space:
mode:
authorMarvin Borner2021-01-08 14:51:11 +0100
committerMarvin Borner2021-01-08 14:51:11 +0100
commit01c570789d7f9ccc1521b791903c8a499b0f6323 (patch)
treee5275dbbc207db6be843df918b3944cc822d0819 /libgui/gfx.c
parent52920b03e996cf60b2665772837bfa0f1661a430 (diff)
Kinda working VFS implementation
Diffstat (limited to 'libgui/gfx.c')
-rw-r--r--libgui/gfx.c4
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]);
}