roadveh_cmd.c
changeset 1266 9dc5638fe8cc
parent 1247 01711347f9ac
child 1282 e7a73ee62d2f
--- a/roadveh_cmd.c	Wed Feb 02 15:45:53 2005 +0000
+++ b/roadveh_cmd.c	Wed Feb 02 16:16:43 2005 +0000
@@ -173,7 +173,7 @@
 		v->u.road.slotindex = 0;
 		v->u.road.slot_age = 0;
 
-		v->last_station_visited = 0xFFFF;
+		v->last_station_visited = INVALID_STATION;
 		v->max_speed = rvi->max_speed;
 		v->engine_type = (byte)p1;
 
@@ -639,7 +639,7 @@
 
 	if (order->type == OT_GOTO_STATION) {
 		if (order->station == v->last_station_visited)
-			v->last_station_visited = 0xFFFF;
+			v->last_station_visited = INVALID_STATION;
 		st = GetStation(order->station);
 
 		{