# HG changeset patch # User peter1138 # Date 1138043555 0 # Node ID d79f2ecea760db7ff01ab457b4953a64a8e31fc9 # Parent 83692a2b2bd2e9a4263bd41bd65026a532a38b50 (svn r3421) - Revert r3412 as it didn't work. - Fix station builder issue by checking the tile is in bounds. diff --git a/misc_gui.c b/misc_gui.c --- a/misc_gui.c +++ b/misc_gui.c @@ -704,11 +704,10 @@ } void DrawStationCoverageAreaText(int sx, int sy, uint mask, int rad) { - int x = _thd.pos.x; - int y = _thd.pos.y; + TileIndex tile = TileVirtXY(_thd.pos.x, _thd.pos.y); AcceptedCargo accepts; - if (x != -1) { - GetAcceptanceAroundTiles(accepts, TileVirtXY(x, y), _thd.size.x / 16, _thd.size.y / 16 , rad); + if (tile < MapSize()) { + GetAcceptanceAroundTiles(accepts, tile, _thd.size.x / 16, _thd.size.y / 16 , rad); DrawStationCoverageText(accepts, sx, sy, mask); } } diff --git a/openttd.c b/openttd.c --- a/openttd.c +++ b/openttd.c @@ -814,10 +814,6 @@ if (_switch_mode_errorstr != INVALID_STRING_ID) ShowErrorMessage(INVALID_STRING_ID,_switch_mode_errorstr,0,0); - - // Reset the TileHighlightData as it may be out of bounds if - // the new map is smaller than the old map. - memset(&_thd, 0, sizeof(_thd)); }