summaryrefslogtreecommitdiff
path: root/ship_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
commitab3ed5c43121cc8adefc0c6bbcf9ef0d1203d3ff (patch)
tree76125ad531fb31d62d879d3f5541edf39532e2d5 /ship_cmd.c
parent944bba10312022f14ae47e6e89fb8456db0f4af3 (diff)
downloadopenttd-ab3ed5c43121cc8adefc0c6bbcf9ef0d1203d3ff.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 'ship_cmd.c')
-rw-r--r--ship_cmd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ship_cmd.c b/ship_cmd.c
index bad598136..42614ed1d 100644
--- a/ship_cmd.c
+++ b/ship_cmd.c
@@ -254,7 +254,7 @@ static void ProcessShipOrder(Vehicle *v)
const Station *st;
if (order->station == v->last_station_visited)
- v->last_station_visited = 0xFFFF;
+ v->last_station_visited = INVALID_STATION;
st = GetStation(order->station);
if (st->dock_tile != 0) {
@@ -919,7 +919,7 @@ int32 CmdBuildShip(int x, int y, uint32 flags, uint32 p1, uint32 p2)
v->cargo_cap = svi->capacity;
v->value = value;
- v->last_station_visited = 0xFFFF;
+ v->last_station_visited = INVALID_STATION;
v->max_speed = svi->max_speed;
v->engine_type = (byte)p1;