(svn r16118) -Change/cleanup: remove the hexadecimal 'in TTD the string had this ID' from 'some' strings and replace the string name with something more sensible.

This commit is contained in:
rubidium
2009-04-21 23:40:56 +00:00
parent 58db962353
commit 59d45a04d6
167 changed files with 78276 additions and 78276 deletions

View File

@@ -329,18 +329,18 @@ static TrackStatus GetTileTrackStatus_Clear(TileIndex tile, TransportType mode,
}
static const StringID _clear_land_str[] = {
STR_080D_GRASS,
STR_080B_ROUGH_LAND,
STR_080A_ROCKS,
STR_080E_FIELDS,
STR_080F_SNOW_COVERED_LAND,
STR_0810_DESERT
STR_CLEAR_LAND_DESCRIPTION_GRASS,
STR_CLEAR_LAND_DESCRIPTION_ROUGH_LAND,
STR_CLEAR_LAND_DESCRIPTION_ROCKS,
STR_CLEAR_LAND_DESCRIPTION_FIELDS,
STR_CLEAR_LAND_DESCRIPTION_SNOW_COVERED_LAND,
STR_CLEAR_LAND_DESCRIPTION_DESERT
};
static void GetTileDesc_Clear(TileIndex tile, TileDesc *td)
{
if (IsClearGround(tile, CLEAR_GRASS) && GetClearDensity(tile) == 0) {
td->str = STR_080C_BARE_LAND;
td->str = STR_CLEAR_LAND_DESCRIPTION_BARE_LAND;
} else {
td->str = _clear_land_str[GetClearGround(tile)];
}