File diff r25450:7e9533370994 → r25451:917146b539af
src/smallmap_gui.cpp
Show inline comments
 
@@ -747,13 +747,13 @@ void SmallMapWindow::SetZoomLevel(ZoomLe
 
inline uint32 SmallMapWindow::GetTileColours(const TileArea &ta) const
 
{
 
	int importance = 0;
 
	TileIndex tile = INVALID_TILE; // Position of the most important tile.
 
	TileType et = MP_VOID;         // Effective tile type at that position.
 

	
 
	TILE_AREA_LOOP(ti, ta) {
 
	for (TileIndex ti : ta) {
 
		TileType ttype = GetTileType(ti);
 

	
 
		switch (ttype) {
 
			case MP_TUNNELBRIDGE: {
 
				TransportType tt = GetTunnelBridgeTransportType(ti);