(svn r3805) - [FS#62] Fix doxygen comments to refer to the correct parameter. (sulai)
This commit is contained in:
12
vehicle.h
12
vehicle.h
@@ -185,14 +185,14 @@ struct Vehicle {
|
||||
byte tick_counter;// increased by one for each tick
|
||||
|
||||
/* Begin Order-stuff */
|
||||
Order current_order; //! The current order (+ status, like: loading)
|
||||
OrderID cur_order_index; //! The index to the current order
|
||||
Order current_order; ///< The current order (+ status, like: loading)
|
||||
OrderID cur_order_index; ///< The index to the current order
|
||||
|
||||
Order *orders; //! Pointer to the first order for this vehicle
|
||||
OrderID num_orders; //! How many orders there are in the list
|
||||
Order *orders; ///< Pointer to the first order for this vehicle
|
||||
OrderID num_orders; ///< How many orders there are in the list
|
||||
|
||||
Vehicle *next_shared; //! If not NULL, this points to the next vehicle that shared the order
|
||||
Vehicle *prev_shared; //! If not NULL, this points to the prev vehicle that shared the order
|
||||
Vehicle *next_shared; ///< If not NULL, this points to the next vehicle that shared the order
|
||||
Vehicle *prev_shared; ///< If not NULL, this points to the prev vehicle that shared the order
|
||||
/* End Order-stuff */
|
||||
|
||||
// Boundaries for the current position in the world and a next hash link.
|
||||
|
||||
Reference in New Issue
Block a user