summaryrefslogtreecommitdiff
path: root/order_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 /order_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 'order_cmd.c')
-rw-r--r--order_cmd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/order_cmd.c b/order_cmd.c
index fe9f22e23..b03305f4b 100644
--- a/order_cmd.c
+++ b/order_cmd.c
@@ -756,7 +756,7 @@ void DeleteDestinationFromVehicleOrder(Order dest)
/* Forget about this station if this station is removed */
if (v->last_station_visited == dest.station && dest.type == OT_GOTO_STATION)
- v->last_station_visited = 0xFFFF;
+ v->last_station_visited = INVALID_STATION;
/* Check the current order */
if (v->current_order.type == dest.type &&