summaryrefslogtreecommitdiff
path: root/vehicle.h
diff options
context:
space:
mode:
Diffstat (limited to 'vehicle.h')
-rw-r--r--vehicle.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/vehicle.h b/vehicle.h
index 3564aed39..61db1cce3 100644
--- a/vehicle.h
+++ b/vehicle.h
@@ -55,11 +55,11 @@ typedef struct VehicleRail {
} VehicleRail;
enum {
- VRF_REVERSING = 1,
+ VRF_REVERSING = 0,
// used to calculate if train is going up or down
- VRF_GOINGUP = 2,
- VRF_GOINGDOWN = 4,
+ VRF_GOINGUP = 1,
+ VRF_GOINGDOWN = 2,
};
typedef struct VehicleAir {