summaryrefslogtreecommitdiff
path: root/src/unmovable_map.h
diff options
context:
space:
mode:
authorsmatz <smatz@openttd.org>2009-03-08 16:10:39 +0000
committersmatz <smatz@openttd.org>2009-03-08 16:10:39 +0000
commite124aa8fd62f3260d2a127aab1e9bc6f5a303480 (patch)
tree093e5d2cab6ed85f891e85bb8d9947464dbc8706 /src/unmovable_map.h
parent7c8474da13d295ddb6224fe66c41e4ba4ac0f050 (diff)
downloadopenttd-e124aa8fd62f3260d2a127aab1e9bc6f5a303480.tar.xz
(svn r15643) -Fix [FS#2711]: be more strict with zeroing unused map array bits
Diffstat (limited to 'src/unmovable_map.h')
-rw-r--r--src/unmovable_map.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/unmovable_map.h b/src/unmovable_map.h
index 027ca7b6b..04aecf916 100644
--- a/src/unmovable_map.h
+++ b/src/unmovable_map.h
@@ -192,6 +192,8 @@ static inline void MakeUnmovable(TileIndex t, UnmovableType u, Owner o)
_m[t].m3 = 0;
_m[t].m4 = 0;
_m[t].m5 = u;
+ SB(_m[t].m6, 2, 4, 0);
+ _me[t].m7 = 0;
}