diff options
Diffstat (limited to 'libgui/bmp.c')
-rw-r--r-- | libgui/bmp.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libgui/bmp.c b/libgui/bmp.c index 9fffbf5..c8795e8 100644 --- a/libgui/bmp.c +++ b/libgui/bmp.c @@ -19,11 +19,11 @@ struct bmp *bmp_load(const char *path) // 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; - bmp->height = info->height; + bmp->size.x = info->width; + bmp->size.y = info->height; bmp->data = (u8 *)((u32)buf + h->offset); bmp->bpp = info->bpp; - bmp->pitch = bmp->width * (bmp->bpp >> 3); + bmp->pitch = bmp->size.x * (bmp->bpp >> 3); return bmp; } |