summaryrefslogtreecommitdiff
path: root/src/map_type.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2014-09-21 11:20:11 +0000
committerrubidium <rubidium@openttd.org>2014-09-21 11:20:11 +0000
commit0ac2d3b3247041e0690e12ac7270dde5377390de (patch)
tree987d8921b28b3ef2c33daf71fa7db98322b4e52e /src/map_type.h
parent47852f119eebc2816bd829b85ee4d105d1520e21 (diff)
downloadopenttd-0ac2d3b3247041e0690e12ac7270dde5377390de.tar.xz
(svn r26876) -Codechange: move 'has bride above' data from m6 to type
Diffstat (limited to 'src/map_type.h')
-rw-r--r--src/map_type.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map_type.h b/src/map_type.h
index fbfc88308..9e0dec5aa 100644
--- a/src/map_type.h
+++ b/src/map_type.h
@@ -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
};
/**