(svn r10878) -Add [FS#653]: added TileHeight to the Land Area Information tool (blove)

This commit is contained in:
truelight 2007-08-13 18:59:34 +00:00
parent 35e8f64e9a
commit 114161bb7a
2 changed files with 3 additions and 2 deletions

View File

@ -1262,7 +1262,7 @@ STR_LANDINFO_LOCK :Lock
STR_BUOY_IS_IN_USE :{WHITE}...buoy is in use!
STR_LANDINFO_COORDS :{BLACK}Coordinates: {LTBLUE}{NUM}x{NUM} ({STRING})
STR_LANDINFO_COORDS :{BLACK}Coordinates: {LTBLUE}{NUM}x{NUM}x{NUM} ({STRING})
STR_CANT_REMOVE_PART_OF_STATION :{WHITE}Can't remove part of station...
STR_CANT_CONVERT_RAIL :{WHITE}Can't convert railtype here...

View File

@ -130,7 +130,8 @@ static void Place_LandInfo(TileIndex tile)
snprintf(_userstring, lengthof(_userstring), "0x%.4X", tile);
SetDParam(0, TileX(tile));
SetDParam(1, TileY(tile));
SetDParam(2, STR_SPEC_USERSTRING);
SetDParam(2, TileHeight(tile));
SetDParam(3, STR_SPEC_USERSTRING);
GetString(_landinfo_data[3], STR_LANDINFO_COORDS, lastof(_landinfo_data[3]));
SetDParam(0, STR_01A9_NONE);