summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2007-06-24 10:20:05 +0000
committerrubidium <rubidium@openttd.org>2007-06-24 10:20:05 +0000
commit5ee292d806755ebc55b6593c37f73ee8519910e4 (patch)
tree079f44e582e6171bb90f042b520fd268f94ba7ab /src
parent627aa240ba1abb083930e457b4eb0098b4d499d8 (diff)
downloadopenttd-5ee292d806755ebc55b6593c37f73ee8519910e4.tar.xz
(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.
Diffstat (limited to 'src')
-rw-r--r--src/industry_cmd.cpp8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/industry_cmd.cpp b/src/industry_cmd.cpp
index 4ae71a1a3..1c6980d18 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) {