(svn r8050) -Codechange: Rename map member extra to m6, since its usage has been widden.

Only doc landscape_grid.html has been updated, landscape.html will be done latter.
-CodeChange: Replace a direct access to m6 with SetTropicZone in InitializeLandscape, as it is the only part of m6 still untouched without the brute-forced m6=0
This commit is contained in:
belugas
2007-01-11 02:05:13 +00:00
parent e29124d48b
commit 04694afabb
10 changed files with 70 additions and 48 deletions

View File

@@ -12,7 +12,7 @@ static inline void MakeVoid(TileIndex t)
_m[t].m3 = 0;
_m[t].m4 = 0;
_m[t].m5 = 0;
_m[t].extra = 0;
_m[t].m6 = 0;
}
#endif /* VOID_MAP_H */