(svn r3805) - [FS#62] Fix doxygen comments to refer to the correct parameter. (sulai)

This commit is contained in:
peter1138
2006-03-09 20:37:51 +00:00
parent 78a7b15ce0
commit 9c7f09322e
9 changed files with 38 additions and 38 deletions

View File

@@ -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.