(svn r19195) -Codechange: actually draw newgrf airport tiles

This commit is contained in:
yexo
2010-02-22 14:16:41 +00:00
parent 80fb5c70c8
commit 880fedc192
7 changed files with 272 additions and 2 deletions

View File

@@ -55,7 +55,7 @@ uint32 GetNearbyIndustryTileInformation(byte parameter, TileIndex tile, Industry
* @param tile TileIndex of the tile to evaluate
* @param ind_tile northernmost tile of the industry
*/
static uint32 GetRelativePosition(TileIndex tile, TileIndex ind_tile)
uint32 GetRelativePosition(TileIndex tile, TileIndex ind_tile)
{
byte x = TileX(tile) - TileX(ind_tile);
byte y = TileY(tile) - TileY(ind_tile);