aboutsummaryrefslogtreecommitdiff
path: root/libgui/gfx.c
diff options
context:
space:
mode:
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]);
}