summaryrefslogtreecommitdiff
path: root/src/newgrf_industries.cpp
diff options
context:
space:
mode:
authorfrosch <frosch@openttd.org>2011-11-08 17:29:11 +0000
committerfrosch <frosch@openttd.org>2011-11-08 17:29:11 +0000
commitdd3e6d3e44f7fd23cb9b5c86889e36fa49d4ddfc (patch)
tree5c918ecc0fa59e07bc875e76335e92f08e68f78c /src/newgrf_industries.cpp
parent8f4c6d42f90dc6bda68c803bebec48a9382eb675 (diff)
downloadopenttd-dd3e6d3e44f7fd23cb9b5c86889e36fa49d4ddfc.tar.xz
(svn r23155) -Change: [NewGRF v8] Use heightlevel units in var 8A of callback 28.
Diffstat (limited to 'src/newgrf_industries.cpp')
-rw-r--r--src/newgrf_industries.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/newgrf_industries.cpp b/src/newgrf_industries.cpp
index eedb5c17b..70e270b26 100644
--- a/src/newgrf_industries.cpp
+++ b/src/newgrf_industries.cpp
@@ -488,7 +488,7 @@ uint32 IndustryLocationGetVariable(const ResolverObject *object, byte variable,
case 0x89: return min(DistanceManhattan(industry->town->xy, tile), 255);
/* Lowest height of the tile */
- case 0x8A: return GetTilePixelZ(tile);
+ case 0x8A: return Clamp(GetTileZ(tile) * (object->grffile->grf_version >= 8 ? 1 : TILE_HEIGHT), 0, 0xFF);
/* Distance to the nearest water/land tile */
case 0x8B: return GetClosestWaterDistance(tile, (GetIndustrySpec(industry->type)->behaviour & INDUSTRYBEH_BUILT_ONWATER) == 0);