(svn r26590) -Fix: possible desync (big/little endian) due to not writing complete variables upon saveload

This commit is contained in:
rubidium
2014-05-16 17:39:35 +00:00
parent 9270d94e7e
commit 191fd09d32
2 changed files with 2 additions and 2 deletions

View File

@@ -302,7 +302,7 @@ struct Airport : public TileArea {
uint64 flags; ///< stores which blocks on the airport are taken. was 16 bit earlier on, then 32
byte type; ///< Type of this airport, @see AirportTypes
byte layout; ///< Airport layout number.
Direction rotation; ///< How this airport is rotated.
DirectionByte rotation; ///< How this airport is rotated.
PersistentStorage *psa; ///< Persistent storage for NewGRF airports.