1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-31 10:29:10 +00:00

(svn r5787) Rename width, height and unk of struct DrawTileSeqStruct to size_{x,y,z}

This commit is contained in:
tron
2006-08-06 08:23:19 +00:00
parent 5280b9302c
commit 7c9165827e
5 changed files with 18 additions and 10 deletions

View File

@@ -165,8 +165,10 @@ static void DrawTile_Unmovable(TileInfo *ti)
image |= ormod;
}
AddSortableSpriteToDraw(
image, ti->x + dtss->delta_x, ti->y + dtss->delta_y,
dtss->width, dtss->height, dtss->unk, ti->z + dtss->delta_z
image,
ti->x + dtss->delta_x, ti->y + dtss->delta_y,
dtss->size_x, dtss->size_y,
dtss->size_z, ti->z + dtss->delta_z
);
}
break;