]> git.draconx.ca Git - liblbx.git/blobdiff - src/image.h
liblbx: Add support for "chunked" images.
[liblbx.git] / src / image.h
index 2f427d10c9111cadbcd641e1dcc22546f0ee7cc1..9bd41eb1ac1aa35b3ff93a9dc2275b6a0569eb4b 100644 (file)
@@ -14,10 +14,9 @@ struct lbx_colour {
 };
 
 struct lbx_imginfo {
-       unsigned int width, height;
-       unsigned int nframes, loopstart;
-       int palettesz;
-       int looping;
+       unsigned short width, height;
+       unsigned char  nframes, loopstart, chunk;
+       int palettesz, looping;
 };
 
 LBX_IMG *lbximg_open(void *f, const struct lbx_file_ops *fops,