(svn r10299) -Codechange [FS#931]: industry foundations should be drawn as all other foundations, i.e. with DrawFoundation, instead of writing the same functionality itself.

This commit is contained in:
rubidium 2007-06-24 10:20:05 +00:00
parent 6402d00190
commit e12e83ef5f
1 changed files with 3 additions and 5 deletions

View File

@ -282,14 +282,12 @@ static void DrawTile_Industry(TileInfo *ti)
z = ti->z;
/* Add bricks below the industry? */
if (ti->tileh != SLOPE_FLAT) {
AddSortableSpriteToDraw(SPR_FOUNDATION_BASE + ti->tileh, PAL_NONE, ti->x, ti->y, 16, 16, 7, z);
AddChildSpriteScreen(image, pal, 31, 1);
DrawFoundation(ti, ti->tileh);
z += TILE_HEIGHT;
} else {
/* Else draw regular ground */
DrawGroundSprite(image, pal);
}
DrawGroundSprite(image, pal);
/* Add industry on top of the ground? */
image = dits->building.sprite;
if (image != 0) {