diff options
author | belugas <belugas@openttd.org> | 2008-02-07 17:01:06 +0000 |
---|---|---|
committer | belugas <belugas@openttd.org> | 2008-02-07 17:01:06 +0000 |
commit | 034150c199a07279d00df06194c5d06741e8b33d (patch) | |
tree | e6dd863d3fd95a91d4a216a2440843d9772741bb | |
parent | b68f398cacbeff7adb49e2d9ac8f08ecbacd1c64 (diff) | |
download | openttd-034150c199a07279d00df06194c5d06741e8b33d.tar.xz |
(svn r12081) -Codechange: Rename table/roadveh.h to table/roadveh_movment.h
It is more descriptive name and it will not upset the generate script anymore
-rw-r--r-- | projects/openttd_vs80.vcproj | 2 | ||||
-rw-r--r-- | projects/openttd_vs90.vcproj | 2 | ||||
-rw-r--r-- | source.list | 2 | ||||
-rw-r--r-- | src/roadveh_cmd.cpp | 2 | ||||
-rw-r--r-- | src/table/roadveh_movement.h (renamed from src/table/roadveh.h) | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/projects/openttd_vs80.vcproj b/projects/openttd_vs80.vcproj index 58414e67e..86215dd0e 100644 --- a/projects/openttd_vs80.vcproj +++ b/projects/openttd_vs80.vcproj @@ -1700,7 +1700,7 @@ > </File> <File - RelativePath=".\..\src\table\roadveh.h" + RelativePath=".\..\src\table\roadveh_movement.h" > </File> <File diff --git a/projects/openttd_vs90.vcproj b/projects/openttd_vs90.vcproj index a6c167989..15dd7d40a 100644 --- a/projects/openttd_vs90.vcproj +++ b/projects/openttd_vs90.vcproj @@ -1697,7 +1697,7 @@ > </File> <File - RelativePath=".\..\src\table\roadveh.h" + RelativePath=".\..\src\table\roadveh_movement.h" > </File> <File diff --git a/source.list b/source.list index af71608d7..7cf9e8c70 100644 --- a/source.list +++ b/source.list @@ -336,7 +336,7 @@ table/landscape_sprite.h table/namegen.h table/palettes.h table/road_land.h -table/roadveh.h +table/roadveh_movement.h table/sprites.h table/station_land.h ../objs/langs/table/strings.h diff --git a/src/roadveh_cmd.cpp b/src/roadveh_cmd.cpp index 7098797a9..6455e1c5e 100644 --- a/src/roadveh_cmd.cpp +++ b/src/roadveh_cmd.cpp @@ -1342,7 +1342,7 @@ struct RoadDriveEntry { byte x, y; }; -#include "table/roadveh.h" +#include "table/roadveh_movement.h" static const byte _road_veh_data_1[] = { 20, 20, 16, 16, 0, 0, 0, 0, diff --git a/src/table/roadveh.h b/src/table/roadveh_movement.h index 2ec38760a..a6f3e543a 100644 --- a/src/table/roadveh.h +++ b/src/table/roadveh_movement.h @@ -1,6 +1,6 @@ /* $Id$ */ -/** @file table/roadveh.h Data about how a road vehicle must drive on a tile */ +/** @file table/roadveh_movement.h Data about how a road vehicle must drive on a tile */ static const RoadDriveEntry _roadveh_drive_data_0[] = { {15, 5}, |