(svn r1860) The sprite header endianness issue was solved in r1855
authortron
Fri, 11 Feb 2005 15:18:09 +0000
changeset 1356 291c2802243f
parent 1355 aa6c2b776727
child 1357 a5acbb1f20fe
(svn r1860) The sprite header endianness issue was solved in r1855
spritecache.h
--- a/spritecache.h	Fri Feb 11 14:33:43 2005 +0000
+++ b/spritecache.h	Fri Feb 11 15:18:09 2005 +0000
@@ -4,9 +4,9 @@
 typedef struct Sprite {
 	byte info;
 	byte height;
-	uint16 width; // LE!
-	int16 x_offs; // LE!
-	int16 y_offs; // LE!
+	uint16 width;
+	int16 x_offs;
+	int16 y_offs;
 	byte data[VARARRAY_SIZE];
 } Sprite;
 assert_compile(sizeof(Sprite) == 8);