From 65548c37a840ca48378180df1bf8857b087f7329 Mon Sep 17 00:00:00 2001 From: Peter Nelson Date: Wed, 23 May 2018 11:48:01 +0100 Subject: Change: Extend map array by 2 bytes with a uint16. --- src/map_type.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/map_type.h') 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 }; /** -- cgit v1.2.3-54-g00ecf