diff options
author | alberth <alberth@openttd.org> | 2010-02-14 16:31:35 +0000 |
---|---|---|
committer | alberth <alberth@openttd.org> | 2010-02-14 16:31:35 +0000 |
commit | 33a96b5ef32499896accf9b32673455be87afe81 (patch) | |
tree | 85e59b2b8ec679f1131d597a55fdb65687c21a89 /src/articulated_vehicles.cpp | |
parent | ac65c415094b01e2f612e720737a633cd822cde0 (diff) | |
download | openttd-33a96b5ef32499896accf9b32673455be87afe81.tar.xz |
(svn r19132) -Codechange: No need to end a line with ;;.
Diffstat (limited to 'src/articulated_vehicles.cpp')
-rw-r--r-- | src/articulated_vehicles.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/articulated_vehicles.cpp b/src/articulated_vehicles.cpp index eb20b3b81..47c4f06cf 100644 --- a/src/articulated_vehicles.cpp +++ b/src/articulated_vehicles.cpp @@ -170,7 +170,7 @@ void GetArticulatedRefitMasks(EngineID engine, bool include_initial_cargo_type, EngineID artic_engine = GetNextArticPart(i, engine); if (artic_engine == INVALID_ENGINE) break; - veh_cargos = GetAvailableVehicleCargoTypes(artic_engine, include_initial_cargo_type);; + veh_cargos = GetAvailableVehicleCargoTypes(artic_engine, include_initial_cargo_type); *union_mask |= veh_cargos; if (veh_cargos != 0) *intersection_mask &= veh_cargos; } |