summaryrefslogtreecommitdiff
path: root/train_cmd.c
diff options
context:
space:
mode:
authorcelestar <celestar@openttd.org>2005-03-25 10:40:58 +0000
committercelestar <celestar@openttd.org>2005-03-25 10:40:58 +0000
commit0cec2577970047dc2f0a725a663f140205fb13cf (patch)
treeb99ea2d10af8a39dcea0b127199ec01311d05575 /train_cmd.c
parentce00b71aa62a627cf2e43b173aa36cedbebc56f6 (diff)
downloadopenttd-0cec2577970047dc2f0a725a663f140205fb13cf.tar.xz
(svn r2055) -CodeChange: Begun introducting StationID
Diffstat (limited to 'train_cmd.c')
-rw-r--r--train_cmd.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/train_cmd.c b/train_cmd.c
index 39a247fe3..7e18243a1 100644
--- a/train_cmd.c
+++ b/train_cmd.c
@@ -1521,7 +1521,7 @@ static bool CheckTrainStayInDepot(Vehicle *v)
/* Check for station tiles */
typedef struct TrainTrackFollowerData {
TileIndex dest_coords;
- int station_index; // station index we're heading for
+ StationID station_index; // station index we're heading for
uint best_bird_dist;
uint best_track_dist;
byte best_track;
@@ -1550,7 +1550,7 @@ static bool TrainTrackFollower(uint tile, TrainTrackFollowerData *ttfd, int trac
return false;
// did we reach the final station?
- if ((ttfd->station_index == -1 && tile == ttfd->dest_coords) ||
+ if ((ttfd->station_index == INVALID_STATION && tile == ttfd->dest_coords) ||
(IsTileType(tile, MP_STATION) && IS_BYTE_INSIDE(_map5[tile], 0, 8) && _map2[tile] == ttfd->station_index)) {
/* We do not check for dest_coords if we have a station_index,
* because in that case the dest_coords are just an
@@ -1585,7 +1585,7 @@ static void FillWithStationData(TrainTrackFollowerData *fd, Vehicle *v)
if (v->current_order.type == OT_GOTO_STATION)
fd->station_index = v->current_order.station;
else
- fd->station_index = -1;
+ fd->station_index = INVALID_STATION;
}
@@ -2018,7 +2018,7 @@ static int UpdateTrainSpeed(Vehicle *v)
return (spd >> 8);
}
-static void TrainEnterStation(Vehicle *v, int station)
+static void TrainEnterStation(Vehicle *v, StationID station)
{
Station *st;
uint32 flags;