summaryrefslogtreecommitdiff
path: root/src/vehicle.cpp
diff options
context:
space:
mode:
authorpeter1138 <peter1138@openttd.org>2008-04-29 07:11:54 +0000
committerpeter1138 <peter1138@openttd.org>2008-04-29 07:11:54 +0000
commit8bb0ff0a63e0060075555cb31ba0765501bbd859 (patch)
tree36d5420c98695a693d66dfeb7cbd25242891e281 /src/vehicle.cpp
parent2d7430cf33909c699432ce3b2adb9a5c585d55c3 (diff)
downloadopenttd-8bb0ff0a63e0060075555cb31ba0765501bbd859.tar.xz
(svn r12917) -Codechange: standardise variable names called with FOR_ALL_ENGINEIDS_OF_TYPE
Diffstat (limited to 'src/vehicle.cpp')
-rw-r--r--src/vehicle.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/vehicle.cpp b/src/vehicle.cpp
index 03351b149..fc92bc7fc 100644
--- a/src/vehicle.cpp
+++ b/src/vehicle.cpp
@@ -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;
}