(svn r26876) -Codechange: move 'has bride above' data from m6 to type

This commit is contained in:
rubidium
2014-09-21 11:20:11 +00:00
parent f82c07b582
commit 173a234951
4 changed files with 13 additions and 18 deletions

View File

@@ -17,14 +17,14 @@
* Look at docs/landscape.html for the exact meaning of the members.
*/
struct Tile {
byte type; ///< The type (bits 4..7)
byte type; ///< The type (bits 4..7), bridges (2..3), rainforest/desert (0..1)
byte height; ///< The height of the northern corner.
byte m1; ///< Primarily used for ownership information
uint16 m2; ///< Primarily used for indices to towns, industries and stations
byte m3; ///< General purpose
byte m4; ///< General purpose
byte m5; ///< General purpose
byte m6; ///< Primarily used for bridges and rainforest/desert
byte m6; ///< General purpose
};
/**