diff --git a/src/station_gui.cpp b/src/station_gui.cpp --- a/src/station_gui.cpp +++ b/src/station_gui.cpp @@ -1132,9 +1132,9 @@ static const Station *FindStationsNearby _deleted_stations_nearby.Clear(); /* Check the inside, to return, if we sit on another station */ - BEGIN_TILE_LOOP(t, ta.w, ta.h, ta.tile) + TILE_LOOP(t, ta.w, ta.h, ta.tile) { if (t < MapSize() && IsTileType(t, MP_STATION) && Station::IsValidID(GetStationIndex(t))) return Station::GetByTile(t); - END_TILE_LOOP(t, ta.w, ta.h, ta.tile) + } /* Look for deleted stations */ const BaseStation *st;