summaryrefslogtreecommitdiff
path: root/src/clear_map.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2014-10-23 17:13:44 +0000
committerrubidium <rubidium@openttd.org>2014-10-23 17:13:44 +0000
commit8739a7b7d0d069130abd291bf4a23d30d3559da9 (patch)
tree60610c8827f0ac97c11dd59c6df259216e36d385 /src/clear_map.h
parent1d27ae9bdaa056b37de19233354ee76b43f0aad4 (diff)
downloadopenttd-8739a7b7d0d069130abd291bf4a23d30d3559da9.tar.xz
(svn r27037) -Fix [FS#6150] (r26878): m6 was moved from Tile To TileExtended, but it wasn't properly removed from Tile (patch by Juanjo)
Diffstat (limited to 'src/clear_map.h')
-rw-r--r--src/clear_map.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/clear_map.h b/src/clear_map.h
index bd48c079a..76b1e82d0 100644
--- a/src/clear_map.h
+++ b/src/clear_map.h
@@ -267,7 +267,7 @@ static inline void MakeClear(TileIndex t, ClearGround g, uint density)
_m[t].m3 = 0;
_m[t].m4 = 0 << 5 | 0 << 2;
SetClearGroundDensity(t, g, density); // Sets m5
- _m[t].m6 = 0;
+ _me[t].m6 = 0;
_me[t].m7 = 0;
}