(svn r18745) -Codechange: Assemble custom station foundations into a single bounding box.

This commit is contained in:
frosch 2010-01-06 20:23:06 +00:00
parent 70f96a3dbf
commit 9c4b5e32fa
1 changed files with 2 additions and 0 deletions

View File

@ -2397,11 +2397,13 @@ static void DrawTile_Station(TileInfo *ti)
if (!HasFoundationNW(ti->tile, slope, z)) ClrBit(parts, 6);
if (!HasFoundationNE(ti->tile, slope, z)) ClrBit(parts, 7);
StartSpriteCombine();
for (int i = 0; i < 8; i++) {
if (HasBit(parts, i)) {
AddSortableSpriteToDraw(image + i, PAL_NONE, ti->x, ti->y, 16, 16, 7, ti->z);
}
}
EndSpriteCombine();
}
OffsetGroundSprite(31, 1);