Change: Extend map array by 2 bytes with a uint16.

This commit is contained in:
Peter Nelson
2018-05-23 11:48:01 +01:00
committed by PeterN
parent 8090580f77
commit 65548c37a8
3 changed files with 56 additions and 3 deletions

View File

@@ -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
};
/**