summaryrefslogtreecommitdiff
path: root/src/map.h
diff options
context:
space:
mode:
authorbelugas <belugas@openttd.org>2007-01-11 02:05:13 +0000
committerbelugas <belugas@openttd.org>2007-01-11 02:05:13 +0000
commit04694afabb3e8c8632dc5e158dfe9729ccffb711 (patch)
tree35400c488d5fac84250bbc2df5031789ffa75050 /src/map.h
parente29124d48b794153be2f3c0e9772cbbda851727d (diff)
downloadopenttd-04694afabb3e8c8632dc5e158dfe9729ccffb711.tar.xz
(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
Diffstat (limited to 'src/map.h')
-rw-r--r--src/map.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map.h b/src/map.h
index fdc7525d0..10202e5c6 100644
--- a/src/map.h
+++ b/src/map.h
@@ -23,7 +23,7 @@ typedef struct Tile {
byte m3;
byte m4;
byte m5;
- byte extra;
+ byte m6;
} Tile;
extern Tile* _m;