summaryrefslogtreecommitdiff
path: root/src/map_type.h
diff options
context:
space:
mode:
authorPeter Nelson <peter1138@openttd.org>2018-05-23 11:48:01 +0100
committerPeterN <peter@fuzzle.org>2018-07-26 13:27:40 +0100
commit65548c37a840ca48378180df1bf8857b087f7329 (patch)
treea50d70c04fd9d7415426fa60d8439fed80f6655a /src/map_type.h
parent8090580f771b40c727f9a66e8bc43d443fbe5fbf (diff)
downloadopenttd-65548c37a840ca48378180df1bf8857b087f7329.tar.xz
Change: Extend map array by 2 bytes with a uint16.
Diffstat (limited to 'src/map_type.h')
-rw-r--r--src/map_type.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/map_type.h b/src/map_type.h
index 620885e5d..7af391b46 100644
--- a/src/map_type.h
+++ b/src/map_type.h
@@ -33,8 +33,9 @@ assert_compile(sizeof(Tile) == 8);
* Look at docs/landscape.html for the exact meaning of the members.
*/
struct TileExtended {
- byte m6; ///< General purpose
- byte m7; ///< Primarily used for newgrf support
+ byte m6; ///< General purpose
+ byte m7; ///< Primarily used for newgrf support
+ uint16 m8; ///< General purpose
};
/**