(svn r12917) -Codechange: standardise variable names called with FOR_ALL_ENGINEIDS_OF_TYPE

This commit is contained in:
peter1138
2008-04-29 07:11:54 +00:00
parent 868c17a175
commit 5ca6fd67fc
5 changed files with 27 additions and 27 deletions

View File

@@ -1985,9 +1985,9 @@ bool CanBuildVehicleInfrastructure(VehicleType type)
/* We can build vehicle infrastructure when we may build the vehicle type */
if (max > 0) {
/* Can we actually build the vehicle type? */
EngineID e;
FOR_ALL_ENGINEIDS_OF_TYPE(e, type) {
if (HasBit(GetEngine(e)->player_avail, _local_player)) return true;
EngineID eid;
FOR_ALL_ENGINEIDS_OF_TYPE(eid, type) {
if (HasBit(GetEngine(eid)->player_avail, _local_player)) return true;
}
return false;
}