(svn r27037) -Fix [FS#6150] (r26878): m6 was moved from Tile To TileExtended, but it wasn't properly removed from Tile (patch by Juanjo)

This commit is contained in:
rubidium
2014-10-23 17:13:44 +00:00
parent 1149f7be46
commit 988b387f14
3 changed files with 2 additions and 3 deletions

View File

@@ -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;
}