summaryrefslogtreecommitdiff
path: root/src/station_base.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2014-05-16 17:39:35 +0000
committerrubidium <rubidium@openttd.org>2014-05-16 17:39:35 +0000
commit191fd09d32b4f070da9f229724af4b4d90c9decb (patch)
treeea7dfde731049bab25e0ffdf93be5f48c0b0c994 /src/station_base.h
parent9270d94e7e116cc613bccd69d3b4bda887c54788 (diff)
downloadopenttd-191fd09d32b4f070da9f229724af4b4d90c9decb.tar.xz
(svn r26590) -Fix: possible desync (big/little endian) due to not writing complete variables upon saveload
Diffstat (limited to 'src/station_base.h')
-rw-r--r--src/station_base.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/station_base.h b/src/station_base.h
index 67c3dcc90..944a731f2 100644
--- a/src/station_base.h
+++ b/src/station_base.h
@@ -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.