diff options
author | Marvin Borner | 2020-10-31 21:50:43 +0100 |
---|---|---|
committer | Marvin Borner | 2020-10-31 21:50:43 +0100 |
commit | c35a83655707c9aae8f728eb850255ad0f115d11 (patch) | |
tree | 4f507c4cf9f7542d7fe32320fcf106a8660f828a /apps/wm.c | |
parent | 66779122ad298b27315b435339ca83960c6c2d41 (diff) |
Added 'exec' demo program
Diffstat (limited to 'apps/wm.c')
-rw-r--r-- | apps/wm.c | 9 |
1 files changed, 3 insertions, 6 deletions
@@ -226,14 +226,11 @@ int main(int argc, char **argv) direct.fb = vbe.fb; list_add(contexts, &root); - //gfx_fill(&direct, COLOR_BG); - //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_border(&root, COLOR_FG, 2); + /* gfx_load_wallpaper(&root, "/res/wall.bmp"); */ gfx_load_image(&cursor, "/res/cursor.bmp", 0, 0); - //gfx_load_wallpaper(&root, "/res/wall.bmp"); redraw_all(); event_register(EVENT_MOUSE); |