aboutsummaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorMarvin Borner2020-11-20 23:04:20 +0100
committerMarvin Borner2020-11-20 23:04:20 +0100
commit33d3ac6b5302f5e3a23cc7e318cf1f0605c398e5 (patch)
tree9ec2013b430e0ad1d21690c5247e687c63d84b76 /apps
parent38e0d413e38838979978d6ff3fdbaf577a916fd0 (diff)
Ported upng library
This results in a faster boot and smaller files.
Diffstat (limited to 'apps')
-rw-r--r--apps/wm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/wm.c b/apps/wm.c
index 8fb7611..322955a 100644
--- a/apps/wm.c
+++ b/apps/wm.c
@@ -235,8 +235,8 @@ int main(int argc, char **argv)
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_image(&cursor, "/res/cursor.bmp", 0, 0);
+ gfx_load_wallpaper(&root, "/res/wall.png");
+ gfx_load_image(&cursor, "/res/cursor.png", 0, 0);
redraw_all();
event_register(EVENT_MOUSE);