aboutsummaryrefslogtreecommitdiff
path: root/apps/wm.c
diff options
context:
space:
mode:
authorMarvin Borner2020-11-19 20:03:54 +0100
committerMarvin Borner2020-11-19 20:03:54 +0100
commitb014342841485737424bee31840fd848fa706536 (patch)
treecdf3580b787bab95d1b1e331fb778a7fd39dfad3 /apps/wm.c
parentd8036aa78139c7890d8adde6ee937929623dbffb (diff)
Added some color
Diffstat (limited to 'apps/wm.c')
-rw-r--r--apps/wm.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/wm.c b/apps/wm.c
index 544fb66..8fb7611 100644
--- a/apps/wm.c
+++ b/apps/wm.c
@@ -232,10 +232,10 @@ int main(int argc, char **argv)
direct.fb = vbe.fb;
list_add(contexts, &root);
- /* gfx_write(&direct, 0, 0, FONT_32, COLOR_FG, "Welcome to Melvix!"); */
- /* gfx_write(&direct, 0, 32, FONT_32, COLOR_FG, "Loading resources..."); */
+ gfx_write(&direct, 0, 0, FONT_32, COLOR_FG, "Welcome to Melvix!");
+ gfx_write(&direct, 0, 32, FONT_32, COLOR_FG, "Loading resources...");
gfx_fill(&root, COLOR_FG);
- /* gfx_load_wallpaper(&root, "/res/wall.bmp"); */
+ gfx_load_wallpaper(&root, "/res/wall.bmp");
gfx_load_image(&cursor, "/res/cursor.bmp", 0, 0);
redraw_all();