From 419f6e099f3b32a8b1f988dd7c912754589bf6d5 Mon Sep 17 00:00:00 2001 From: smatz Date: Fri, 26 Dec 2008 18:01:15 +0000 Subject: (svn r14743) -Codechange: use INVALID_TILE to indicate station doesn't have queried facility (or station/roadstop is invalid) instead of 0 (Yexo) --- src/ai/default/default.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/ai') diff --git a/src/ai/default/default.cpp b/src/ai/default/default.cpp index 8e5f4a069..5f7f5a59b 100644 --- a/src/ai/default/default.cpp +++ b/src/ai/default/default.cpp @@ -3689,11 +3689,11 @@ static void AiStateRemoveStation(Company *c) // Go through all stations and delete those that aren't in use FOR_ALL_STATIONS(st) { if (st->owner == _current_company && !in_use[st->index] && - ( (st->bus_stops != NULL && (tile = st->bus_stops->xy) != 0) || - (st->truck_stops != NULL && (tile = st->truck_stops->xy) != 0) || - (tile = st->train_tile) != 0 || - (tile = st->dock_tile) != 0 || - (tile = st->airport_tile) != 0)) { + ( (st->bus_stops != NULL && (tile = st->bus_stops->xy) != INVALID_TILE) || + (st->truck_stops != NULL && (tile = st->truck_stops->xy) != INVALID_TILE) || + (tile = st->train_tile) != INVALID_TILE || + (tile = st->dock_tile) != INVALID_TILE || + (tile = st->airport_tile) != INVALID_TILE)) { DoCommand(tile, 0, 0, DC_EXEC, CMD_LANDSCAPE_CLEAR); } } -- cgit v1.2.3-70-g09d2