src/station_cmd.cpp
changeset 9775 22e256c3bf46
parent 9721 b6441d53c221
child 9785 2005c34d0811
equal deleted inserted replaced
9774:190734cb1113 9775:22e256c3bf46
  1417 	}
  1417 	}
  1418 	return cost;
  1418 	return cost;
  1419 }
  1419 }
  1420 
  1420 
  1421 
  1421 
  1422 static void *ClearRoadStopStatusEnum(Vehicle *v, void *)
  1422 static Vehicle *ClearRoadStopStatusEnum(Vehicle *v, void *)
  1423 {
  1423 {
  1424 	if (v->type == VEH_ROAD) ClrBit(v->u.road.state, RVS_IN_DT_ROAD_STOP);
  1424 	if (v->type == VEH_ROAD) ClrBit(v->u.road.state, RVS_IN_DT_ROAD_STOP);
  1425 
  1425 
  1426 	return NULL;
  1426 	return NULL;
  1427 }
  1427 }