equal
deleted
inserted
replaced
3616 // Go to this state when we're done. |
3616 // Go to this state when we're done. |
3617 p->ai.state = AIS_1; |
3617 p->ai.state = AIS_1; |
3618 |
3618 |
3619 // Get a list of all stations that are in use by a vehicle |
3619 // Get a list of all stations that are in use by a vehicle |
3620 memset(in_use, 0, sizeof(in_use)); |
3620 memset(in_use, 0, sizeof(in_use)); |
3621 for (ord = _order_array; ord != _ptr_to_next_order; ++ord) { |
3621 FOR_ALL_ORDERS(ord) { |
3622 if (ord->type == OT_GOTO_STATION) |
3622 if (ord->type == OT_GOTO_STATION) |
3623 in_use[ord->station] = 1; |
3623 in_use[ord->station] = 1; |
3624 } |
3624 } |
3625 |
3625 |
3626 // Go through all stations and delete those that aren't in use |
3626 // Go through all stations and delete those that aren't in use |