summaryrefslogtreecommitdiff
path: root/src/vehicle.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.cpp
parent9c6157c578a63db38f8dd544abb0f16cd058111b (diff)
downloadopenttd-e9624fe0cc4b2716358a563edb1bc48c05cdbcce.tar.xz
(svn r17682) -Codechange: remove erroneous space before some commas
Diffstat (limited to 'src/vehicle.cpp')
-rw-r--r--src/vehicle.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vehicle.cpp b/src/vehicle.cpp
index ce94c71c9..7bb6ffd94 100644
--- a/src/vehicle.cpp
+++ b/src/vehicle.cpp
@@ -1123,9 +1123,9 @@ GetNewVehiclePosResult GetNewVehiclePos(const Vehicle *v)
}
static const Direction _new_direction_table[] = {
- DIR_N , DIR_NW, DIR_W ,
+ DIR_N, DIR_NW, DIR_W,
DIR_NE, DIR_SE, DIR_SW,
- DIR_E , DIR_SE, DIR_S
+ DIR_E, DIR_SE, DIR_S
};
Direction GetDirectionTowards(const Vehicle *v, int x, int y)