Changeset - r18309:c91770422c8d
[Not reviewed]
master
0 1 0
frosch - 13 years ago 2011-11-08 17:29:11
frosch@openttd.org
(svn r23155) -Change: [NewGRF v8] Use heightlevel units in var 8A of callback 28.
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/newgrf_industries.cpp
Show inline comments
 
@@ -488,7 +488,7 @@ uint32 IndustryLocationGetVariable(const
 
		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);
0 comments (0 inline, 0 general)