Changeset - r21971:ccc9789a30af
[Not reviewed]
master
0 1 0
planetmaker - 9 years ago 2015-01-26 10:27:51
planetmaker@openttd.org
(svn r27126) -Fix [FS#6218] (r26873): Reduce memory footprint of map array by shuffling its variables
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/map_type.h
Show inline comments
 
@@ -19,8 +19,8 @@
 
struct Tile {
 
	byte   type;        ///< The type (bits 4..7), bridges (2..3), rainforest/desert (0..1)
 
	byte   height;      ///< The height of the northern corner.
 
	uint16 m2;          ///< Primarily used for indices to towns, industries and stations
 
	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
0 comments (0 inline, 0 general)