From 7d310e4897887909099afa1cb9333dd85eae3bd4 Mon Sep 17 00:00:00 2001 From: Harry Jeffery Date: Sun, 26 Nov 2017 13:43:05 +0000 Subject: Use imv_bitmap for bitmaps intead of FIBITMAP --- src/image.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/image.h') diff --git a/src/image.h b/src/image.h index c67e55f..e2fda4f 100644 --- a/src/image.h +++ b/src/image.h @@ -1,8 +1,8 @@ #ifndef IMV_IMAGE_H #define IMV_IMAGE_H +#include "bitmap.h" #include -#include struct imv_image; @@ -13,7 +13,7 @@ struct imv_image *imv_image_create(SDL_Renderer *r); void imv_image_free(struct imv_image *image); /* Updates the image to contain the data in the bitmap parameter */ -int imv_image_set_bitmap(struct imv_image *image, FIBITMAP *bmp); +int imv_image_set_bitmap(struct imv_image *image, struct imv_bitmap *bmp); /* Draw the image at the given position with the given scale */ void imv_image_draw(struct imv_image *image, int x, int y, double scale); -- cgit v1.2.3