Changeset - r1356:ce1373b836e5
[Not reviewed]
master
0 1 0
tron - 19 years ago 2005-02-11 15:18:09
tron@openttd.org
(svn r1860) The sprite header endianness issue was solved in r1855
1 file changed with 3 insertions and 3 deletions:
0 comments (0 inline, 0 general)
spritecache.h
Show inline comments
 
@@ -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);
0 comments (0 inline, 0 general)