diff options
author | tron <tron@openttd.org> | 2005-02-11 15:18:09 +0000 |
---|---|---|
committer | tron <tron@openttd.org> | 2005-02-11 15:18:09 +0000 |
commit | 3a93a250b74a1d13a252f0bfffc221f3d61c7db1 (patch) | |
tree | 186d8e38f27c05a4b86334d927dc2ffa5805f1f5 /spritecache.h | |
parent | f03b8859ed864cd11345b499902733bd43f38a8b (diff) | |
download | openttd-3a93a250b74a1d13a252f0bfffc221f3d61c7db1.tar.xz |
(svn r1860) The sprite header endianness issue was solved in r1855
Diffstat (limited to 'spritecache.h')
-rw-r--r-- | spritecache.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/spritecache.h b/spritecache.h index f1c0a80f7..12e46d6ca 100644 --- a/spritecache.h +++ b/spritecache.h @@ -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); |