diff --git a/src/industry_cmd.cpp b/src/industry_cmd.cpp index 4ae71a1a31..1c6980d186 100644 --- a/src/industry_cmd.cpp +++ b/src/industry_cmd.cpp @@ -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) {