X-Git-Url: https://git.draconx.ca/gitweb/liblbx.git/blobdiff_plain/5ca921b28d5ca2964e19dad8f9b8614b2aebca4d..3d1e13378f4e3cd29bd2698fed4552024f87e9c2:/src/image.h diff --git a/src/image.h b/src/image.h index 2679bab..2057a42 100644 --- a/src/image.h +++ b/src/image.h @@ -11,15 +11,11 @@ struct lbx_image { }; struct lbx_colour { - unsigned char red; - unsigned char green; - unsigned char blue; - unsigned char active; + unsigned red:6, green:6, blue:6, active:1; }; struct lbx_imginfo { - unsigned short width, height; - unsigned char nframes, loopstart, chunk; + unsigned char loopstart; int palettesz, looping; };