summaryrefslogtreecommitdiff
path: root/src/newgrf_house.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2007-09-30 19:33:40 +0000
committerrubidium <rubidium@openttd.org>2007-09-30 19:33:40 +0000
commita2256f6b0f87eb8bca4c78b738613049efc8cd17 (patch)
treea8a967db4b08465c4983d1b1cc857808c8477485 /src/newgrf_house.cpp
parent171374a8f0e437dc9ddec018aa4e9291b6fe9d9c (diff)
downloadopenttd-a2256f6b0f87eb8bca4c78b738613049efc8cd17.tar.xz
(svn r11190) -Fix: make snowy roofs of (newgrf) houses also transparent.
Diffstat (limited to 'src/newgrf_house.cpp')
-rw-r--r--src/newgrf_house.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/newgrf_house.cpp b/src/newgrf_house.cpp
index 49679017d..b7718ee62 100644
--- a/src/newgrf_house.cpp
+++ b/src/newgrf_house.cpp
@@ -346,7 +346,7 @@ void DrawTileLayout(const TileInfo *ti, const SpriteGroup *group, byte stage, Ho
HASBIT(_transparent_opt, TO_HOUSES)
);
} else {
- AddChildSpriteScreen(image, pal, dtss->delta_x, dtss->delta_y);
+ AddChildSpriteScreen(image, pal, dtss->delta_x, dtss->delta_y, HASBIT(_transparent_opt, TO_HOUSES));
}
}
}