(svn r17682) -Codechange: remove erroneous space before some commas

This commit is contained in:
rubidium
2009-10-02 15:13:15 +00:00
parent 9c6157c578
commit e9624fe0cc
16 changed files with 21 additions and 21 deletions

View File

@@ -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)