summaryrefslogtreecommitdiff
path: root/src/ship.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ship.h')
-rw-r--r--src/ship.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/ship.h b/src/ship.h
index 807e69c5e..fff0aee5c 100644
--- a/src/ship.h
+++ b/src/ship.h
@@ -26,11 +26,11 @@ typedef std::deque<Trackdir> ShipPathCache;
* All ships have this type.
*/
struct Ship FINAL : public SpecializedVehicle<Ship, VEH_SHIP> {
- TrackBits state; ///< The "track" the ship is following.
- ShipPathCache path; ///< Cached path.
- DirectionByte rotation; ///< Visible direction.
- int16 rotation_x_pos; ///< NOSAVE: X Position before rotation.
- int16 rotation_y_pos; ///< NOSAVE: Y Position before rotation.
+ TrackBits state; ///< The "track" the ship is following.
+ ShipPathCache path; ///< Cached path.
+ Direction rotation; ///< Visible direction.
+ int16 rotation_x_pos; ///< NOSAVE: X Position before rotation.
+ int16 rotation_y_pos; ///< NOSAVE: Y Position before rotation.
/** We don't want GCC to zero our struct! It already is zeroed and has an index! */
Ship() : SpecializedVehicleBase() {}