summaryrefslogtreecommitdiff
path: root/sprite.h
diff options
context:
space:
mode:
authortron <tron@openttd.org>2006-08-06 08:23:19 +0000
committertron <tron@openttd.org>2006-08-06 08:23:19 +0000
commitfb251d18e06591423739a2cac659a9f4511370b8 (patch)
treec93bd1f91a7be43827b6f59f090d20d3735fc6d1 /sprite.h
parente6ffc4c6471811aef50553250b37263711c99958 (diff)
downloadopenttd-fb251d18e06591423739a2cac659a9f4511370b8.tar.xz
(svn r5787) Rename width, height and unk of struct DrawTileSeqStruct to size_{x,y,z}
Diffstat (limited to 'sprite.h')
-rw-r--r--sprite.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/sprite.h b/sprite.h
index 21a9f32cf..9dca01a66 100644
--- a/sprite.h
+++ b/sprite.h
@@ -12,8 +12,9 @@ typedef struct DrawTileSeqStruct {
int8 delta_x; // 0x80 is sequence terminator
int8 delta_y;
int8 delta_z;
- byte width,height;
- byte unk; // 'depth', just z-size; TODO: rename
+ byte size_x;
+ byte size_y;
+ byte size_z;
uint32 image;
} DrawTileSeqStruct;