(svn r23595) -Codechange: add comma after last enum to get a more uniform coding style
This commit is contained in:
@@ -20,7 +20,7 @@
|
||||
/** What is the status of our acceleration? */
|
||||
enum AccelStatus {
|
||||
AS_ACCEL, ///< We want to go faster, if possible of course.
|
||||
AS_BRAKE ///< We want to stop.
|
||||
AS_BRAKE, ///< We want to stop.
|
||||
};
|
||||
|
||||
/**
|
||||
@@ -50,8 +50,8 @@ struct GroundVehicleCache {
|
||||
|
||||
/** Ground vehicle flags. */
|
||||
enum GroundVehicleFlags {
|
||||
GVF_GOINGUP_BIT = 0, ///< Vehicle is currently going uphill. (Cached track information for acceleration)
|
||||
GVF_GOINGDOWN_BIT = 1, ///< Vehicle is currently going downhill. (Cached track information for acceleration)
|
||||
GVF_GOINGUP_BIT = 0, ///< Vehicle is currently going uphill. (Cached track information for acceleration)
|
||||
GVF_GOINGDOWN_BIT = 1, ///< Vehicle is currently going downhill. (Cached track information for acceleration)
|
||||
GVF_SUPPRESS_IMPLICIT_ORDERS = 2, ///< Disable insertion and removal of automatic orders until the vehicle completes the real order.
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user