From 33d3ac6b5302f5e3a23cc7e318cf1f0605c398e5 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Fri, 20 Nov 2020 23:04:20 +0100 Subject: Ported upng library This results in a faster boot and smaller files. --- libgui/bmp.c | 1 + 1 file changed, 1 insertion(+) (limited to 'libgui/bmp.c') diff --git a/libgui/bmp.c b/libgui/bmp.c index 25745a7..3097e99 100644 --- a/libgui/bmp.c +++ b/libgui/bmp.c @@ -16,6 +16,7 @@ struct bmp *bmp_load(const char *path) if (h->signature[0] != 'B' || h->signature[1] != 'M') return NULL; + // TODO: Support padding with odd widths struct bmp_info *info = (struct bmp_info *)((u32)buf + sizeof(*h)); struct bmp *bmp = malloc(sizeof(*bmp)); bmp->width = info->width; -- cgit v1.2.3