summaryrefslogtreecommitdiff
path: root/src/smallmap_gui.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2008-11-07 18:02:46 +0000
committerrubidium <rubidium@openttd.org>2008-11-07 18:02:46 +0000
commit13ee151a69b8f11f75d4013c06e2eba205b48f4d (patch)
treec9c58785e56b560862505822c3e0c529b45b6956 /src/smallmap_gui.cpp
parentc7f3935506b584415ea249ab01f4d2c8f70c08cc (diff)
downloadopenttd-13ee151a69b8f11f75d4013c06e2eba205b48f4d.tar.xz
(svn r14567) -Revert (part of 14566): don't commit testing stuff...
Diffstat (limited to 'src/smallmap_gui.cpp')
-rw-r--r--src/smallmap_gui.cpp16
1 files changed, 1 insertions, 15 deletions
diff --git a/src/smallmap_gui.cpp b/src/smallmap_gui.cpp
index 4eaf50926..5c993cc2c 100644
--- a/src/smallmap_gui.cpp
+++ b/src/smallmap_gui.cpp
@@ -383,20 +383,6 @@ static inline uint32 GetSmallMapIndustriesPixels(TileIndex tile)
return ApplyMask(MKCOLOR(0x54545454), &_smallmap_vehicles_andor[t]);
}
-#define MK(x) MKCOLOR(x << 24 | x << 16 | x << 8 | x)
-
-static const uint32 _busyness[] = {
- MK(15),
- MK(150),
- MK(209),
- MK(206),
- MK(191),
- MK(186),
- MK(184),
- MK(180),
-};
-
-
/**
* Return the color a tile would be displayed with in the small map in mode "Routes".
*
@@ -419,7 +405,7 @@ static inline uint32 GetSmallMapRoutesPixels(TileIndex tile)
}
} else {
/* ground color */
- bits = ApplyMask(t == MP_RAILWAY ? _busyness[CountBits(GetStat(tile))] : MKCOLOR(0x54545454), &_smallmap_contours_andor[t]);
+ bits = ApplyMask(MKCOLOR(0x54545454), &_smallmap_contours_andor[t]);
}
return bits;
}