X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Flibgame%2Fimage.h;h=feb1a973010a107088fbfdd8ca3a9454269bf7ca;hb=11db3a75c0ab5b9e8c98b4cdbb17080f9dc3d1a5;hp=2b3af63d7723c61060309e2e546796d93b0b66fd;hpb=322297d68005c08b35e7c309a841553b73259a9c;p=rocksndiamonds.git diff --git a/src/libgame/image.h b/src/libgame/image.h index 2b3af63d..feb1a973 100644 --- a/src/libgame/image.h +++ b/src/libgame/image.h @@ -50,7 +50,8 @@ typedef struct unsigned int width; /* width of image in pixels */ unsigned int height; /* height of image in pixels */ unsigned int depth; /* depth of image in bits if IRGB type */ - unsigned int bytes_per_row; /* ((depth + 7) / 8) bytes * width */ + unsigned int bytes_per_pixel;/* (depth + 7) / 8 */ + unsigned int bytes_per_row; /* width * bytes_per_pixel */ byte *data; /* image data */ } Image;