(svn r27621) -Fix (r27620): Committed too early.

This commit is contained in:
frosch 2016-07-22 21:38:49 +00:00
parent ed27cec094
commit a5b7800aca
1 changed files with 2 additions and 2 deletions

View File

@ -738,11 +738,11 @@ inline uint32 SmallMapWindow::GetTileColours(const TileArea &ta) const
TileType et = MP_VOID; // Effective tile type at that position.
TILE_AREA_LOOP(ti, ta) {
TileType ttype = GetTileType(tile);
TileType ttype = GetTileType(ti);
switch (ttype) {
case MP_TUNNELBRIDGE: {
TransportType tt = GetTunnelBridgeTransportType(tile);
TransportType tt = GetTunnelBridgeTransportType(ti);
switch (tt) {
case TRANSPORT_RAIL: ttype = MP_RAILWAY; break;