summaryrefslogtreecommitdiff
path: root/src/vehicle_cmd.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2009-10-02 15:13:15 +0000
committerrubidium <rubidium@openttd.org>2009-10-02 15:13:15 +0000
commite9624fe0cc4b2716358a563edb1bc48c05cdbcce (patch)
tree47b976b3f59881e0d573df8645e27e1f9d7e9981 /src/vehicle_cmd.cpp
parent9c6157c578a63db38f8dd544abb0f16cd058111b (diff)
downloadopenttd-e9624fe0cc4b2716358a563edb1bc48c05cdbcce.tar.xz
(svn r17682) -Codechange: remove erroneous space before some commas
Diffstat (limited to 'src/vehicle_cmd.cpp')
-rw-r--r--src/vehicle_cmd.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vehicle_cmd.cpp b/src/vehicle_cmd.cpp
index 9f1de3c44..e8567abc4 100644
--- a/src/vehicle_cmd.cpp
+++ b/src/vehicle_cmd.cpp
@@ -443,7 +443,7 @@ CommandCost CmdCloneVehicle(TileIndex tile, DoCommandFlag flags, uint32 p1, uint
assert(w != NULL);
if (w->cargo_type != v->cargo_type || w->cargo_subtype != v->cargo_subtype) {
- CommandCost cost = DoCommand(0, w->index, v->cargo_type | (v->cargo_subtype << 8) | 1U << 16 , flags, GetCmdRefitVeh(v));
+ CommandCost cost = DoCommand(0, w->index, v->cargo_type | (v->cargo_subtype << 8) | 1U << 16, flags, GetCmdRefitVeh(v));
if (CmdSucceeded(cost)) total_cost.AddCost(cost);
}