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
commit7c9165827eb64c74efbad0198e97fe1a77fdb258 (patch)
treec93bd1f91a7be43827b6f59f090d20d3735fc6d1 /sprite.h
parent5280b9302cc650d9c6cee5641e798204499acf7f (diff)
downloadopenttd-7c9165827eb64c74efbad0198e97fe1a77fdb258.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;