diff options
-rw-r--r-- | apps/wm.c | 2 | ||||
-rw-r--r-- | libgui/gfx.c | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -146,7 +146,7 @@ int main(int argc, char **argv) cursor = window_create(wm_client, "cursor", vec3(0, 0, 0), vec2(32, 32), WF_NO_DRAG | WF_NO_FOCUS | WF_NO_RESIZE); - //gfx_fill(&root->ctx, COLOR_WHITE); + gfx_write(&root->ctx, vec2(0, 0), FONT_32, COLOR_FG, "Loading Melvix..."); gfx_load_wallpaper(&root->ctx, "/res/wall.png"); gfx_load_wallpaper(&cursor->ctx, "/res/cursor.png"); diff --git a/libgui/gfx.c b/libgui/gfx.c index 167c76f..687a883 100644 --- a/libgui/gfx.c +++ b/libgui/gfx.c @@ -23,7 +23,7 @@ #define FONT_32_PATH "/font/spleen-16x32.psfu" #define FONT_64_PATH "/font/spleen-32x64.psfu" -struct font *fonts[FONT_COUNT]; +struct font *fonts[FONT_COUNT] = { 0 }; static void load_font(enum font_type font_type) { |