summaryrefslogtreecommitdiff
path: root/train_cmd.c
diff options
context:
space:
mode:
authortruelight <truelight@openttd.org>2005-02-02 16:16:43 +0000
committertruelight <truelight@openttd.org>2005-02-02 16:16:43 +0000
commit0668a6b485fbe99e4fb465cb9efbd5a42f0a1bf9 (patch)
tree76125ad531fb31d62d879d3f5541edf39532e2d5 /train_cmd.c
parentc51ed8465d1726d554068ffd9cc278ea50e8e223 (diff)
downloadopenttd-0668a6b485fbe99e4fb465cb9efbd5a42f0a1bf9.tar.xz
(svn r1770) -Fix: Hopefully last pieces of code that are containing a station-id
(and should be an uint16, not uint8)
Diffstat (limited to 'train_cmd.c')
-rw-r--r--train_cmd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/train_cmd.c b/train_cmd.c
index d9473be93..3f56fa801 100644
--- a/train_cmd.c
+++ b/train_cmd.c
@@ -586,7 +586,7 @@ int32 CmdBuildRailVehicle(int x, int y, uint32 flags, uint32 p1, uint32 p2)
v->cargo_cap = rvi->capacity;
v->max_speed = rvi->max_speed;
v->value = value;
- v->last_station_visited = 0xFFFF;
+ v->last_station_visited = INVALID_STATION;
v->dest_tile = 0;
v->engine_type = (byte)p1;
@@ -1938,7 +1938,7 @@ static bool ProcessTrainOrder(Vehicle *v)
switch (order->type) {
case OT_GOTO_STATION:
if (order->station == v->last_station_visited)
- v->last_station_visited = 0xFFFF;
+ v->last_station_visited = INVALID_STATION;
v->dest_tile = GetStation(order->station)->xy;
result = CheckReverseTrain(v);
break;