summaryrefslogtreecommitdiff
path: root/newgrf.c
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 /newgrf.c
parente6ffc4c6471811aef50553250b37263711c99958 (diff)
downloadopenttd-fb251d18e06591423739a2cac659a9f4511370b8.tar.xz
(svn r5787) Rename width, height and unk of struct DrawTileSeqStruct to size_{x,y,z}
Diffstat (limited to 'newgrf.c')
-rw-r--r--newgrf.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/newgrf.c b/newgrf.c
index 0cd835ac2..dc5a55210 100644
--- a/newgrf.c
+++ b/newgrf.c
@@ -862,9 +862,9 @@ static bool StationChangeInfo(uint stid, int numinfo, int prop, byte **bufp, int
if ((byte) dtss->delta_x == 0x80) break;
dtss->delta_y = grf_load_byte(&buf);
dtss->delta_z = grf_load_byte(&buf);
- dtss->width = grf_load_byte(&buf);
- dtss->height = grf_load_byte(&buf);
- dtss->unk = grf_load_byte(&buf);
+ dtss->size_x = grf_load_byte(&buf);
+ dtss->size_y = grf_load_byte(&buf);
+ dtss->size_z = grf_load_byte(&buf);
dtss->image = grf_load_dword(&buf);
/* Remap flags as ours collide */