summaryrefslogtreecommitdiff
path: root/src/map.h
diff options
context:
space:
mode:
authormaedhros <maedhros@openttd.org>2007-03-19 11:27:30 +0000
committermaedhros <maedhros@openttd.org>2007-03-19 11:27:30 +0000
commit73ff939ddbb4772178de68f821d9c32ded846a06 (patch)
tree8ccaccab74c6399452d6ff3f09d5c94335516a62 /src/map.h
parentae48a7447be849bdad48ca5996a246d29165f39e (diff)
downloadopenttd-73ff939ddbb4772178de68f821d9c32ded846a06.tar.xz
(svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
the newhouses grf specs, so all newhouses grfs will be playable in the game. Many thanks to everyone who contributed code and ideas, and all the testers who found things we missed.
Diffstat (limited to 'src/map.h')
-rw-r--r--src/map.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/map.h b/src/map.h
index 67e141c53..72e6c0c27 100644
--- a/src/map.h
+++ b/src/map.h
@@ -28,7 +28,12 @@ struct Tile {
byte m6;
};
-extern Tile* _m;
+struct TileExtended {
+ byte m7;
+};
+
+extern Tile *_m;
+extern TileExtended *_me;
void AllocateMap(uint size_x, uint size_y);