summaryrefslogtreecommitdiff
path: root/smallmap_gui.c
diff options
context:
space:
mode:
authortron <tron@openttd.org>2006-04-04 21:35:13 +0000
committertron <tron@openttd.org>2006-04-04 21:35:13 +0000
commit99a6b9b8f239b43924282ea6b1775ee3850ca551 (patch)
tree8fd9a06aeed0593b1ea4c6f859fd0e7ce9f86442 /smallmap_gui.c
parent52892863e5c140e9e486b97e252b184a9f08a196 (diff)
downloadopenttd-99a6b9b8f239b43924282ea6b1775ee3850ca551.tar.xz
(svn r4279) s/\<CL_/CLEAR_/
Diffstat (limited to 'smallmap_gui.c')
-rw-r--r--smallmap_gui.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/smallmap_gui.c b/smallmap_gui.c
index 4e2851a48..360b89fdb 100644
--- a/smallmap_gui.c
+++ b/smallmap_gui.c
@@ -482,7 +482,7 @@ static inline uint32 GetSmallMapVegetationPixels(TileIndex tile)
switch (t) {
case MP_CLEAR:
- if (IsClearGround(tile, CL_GRASS) && GetClearDensity(tile) < 3) {
+ if (IsClearGround(tile, CLEAR_GRASS) && GetClearDensity(tile) < 3) {
bits = MKCOLOR(0x37373737);
} else {
bits = _vegetation_clear_bits[GetClearGround(tile)];