From 6d4ff761bfea77ba38e2a34fae3dae5ba65e836d Mon Sep 17 00:00:00 2001 From: julianb0 Date: Wed, 26 Jun 2019 21:27:22 +0200 Subject: [PATCH] font --- fs/{console_font.ttf => csfont.ttf} | Bin vm/pc/console.c | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename fs/{console_font.ttf => csfont.ttf} (100%) diff --git a/fs/console_font.ttf b/fs/csfont.ttf similarity index 100% rename from fs/console_font.ttf rename to fs/csfont.ttf diff --git a/vm/pc/console.c b/vm/pc/console.c index c610f58..6deba8b 100644 --- a/vm/pc/console.c +++ b/vm/pc/console.c @@ -50,7 +50,7 @@ void console_init(ctx_t *ctx) TTF_Init(); scr_font = TTF_OpenFont - ("fs/console_font.ttf", CONSOLE_FONT_SIZE); + ("fs/csfont.ttf", CONSOLE_FONT_SIZE); if (scr_font == NULL) {