File diff r5214:c3353fa00a2c → r5215:5975e06c9f82
build_vehicle_gui.c
Show inline comments
 
@@ -287,13 +287,13 @@ static void GenerateBuildAircraftList(Wi
 
	/* Make list of all available planes.
 
	 * Also check to see if the previously selected plane is still available,
 
	 * and if not, reset selection to INVALID_ENGINE. This could be the case
 
	 * when planes become obsolete and are removed */
 
	sel_id = INVALID_ENGINE;
 
	for (eid = AIRCRAFT_ENGINES_INDEX; eid < AIRCRAFT_ENGINES_INDEX + NUM_AIRCRAFT_ENGINES; eid++) {
 
		if (IsEngineBuildable(eid, VEH_Aircraft)) {
 
		if (IsEngineBuildable(eid, VEH_Aircraft, _local_player)) {
 
			const AircraftVehicleInfo *avi = AircraftVehInfo(eid);
 
			switch (bv->filter.acc_planes) {
 
				case HELICOPTERS_ONLY:
 
					if (avi->subtype != 0) continue; // if not helicopter
 
					break;