summaryrefslogtreecommitdiff
path: root/rail_cmd.c
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2006-08-22 14:38:37 +0000
committerrubidium <rubidium@openttd.org>2006-08-22 14:38:37 +0000
commit908d3bcfe6912b5e6270453bd6c3db8862a4d62b (patch)
tree2a3621a92a3d30384ea51e0898d08f035a559915 /rail_cmd.c
parent7ba3ea5f29b1c23a001a31dec5570c383a72861a (diff)
downloadopenttd-908d3bcfe6912b5e6270453bd6c3db8862a4d62b.tar.xz
(svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
Diffstat (limited to 'rail_cmd.c')
-rw-r--r--rail_cmd.c26
1 files changed, 13 insertions, 13 deletions
diff --git a/rail_cmd.c b/rail_cmd.c
index 4676d492b..4e623703f 100644
--- a/rail_cmd.c
+++ b/rail_cmd.c
@@ -2023,17 +2023,17 @@ static uint32 VehicleEnter_Track(Vehicle *v, TileIndex tile, int x, int y)
const TileTypeProcs _tile_type_rail_procs = {
- DrawTile_Track, /* draw_tile_proc */
- GetSlopeZ_Track, /* get_slope_z_proc */
- ClearTile_Track, /* clear_tile_proc */
- GetAcceptedCargo_Track, /* get_accepted_cargo_proc */
- GetTileDesc_Track, /* get_tile_desc_proc */
- GetTileTrackStatus_Track, /* get_tile_track_status_proc */
- ClickTile_Track, /* click_tile_proc */
- AnimateTile_Track, /* animate_tile_proc */
- TileLoop_Track, /* tile_loop_clear */
- ChangeTileOwner_Track, /* change_tile_owner_clear */
- NULL, /* get_produced_cargo_proc */
- VehicleEnter_Track, /* vehicle_enter_tile_proc */
- GetSlopeTileh_Track, /* get_slope_tileh_proc */
+ DrawTile_Track, /* draw_tile_proc */
+ GetSlopeZ_Track, /* get_slope_z_proc */
+ ClearTile_Track, /* clear_tile_proc */
+ GetAcceptedCargo_Track, /* get_accepted_cargo_proc */
+ GetTileDesc_Track, /* get_tile_desc_proc */
+ GetTileTrackStatus_Track, /* get_tile_track_status_proc */
+ ClickTile_Track, /* click_tile_proc */
+ AnimateTile_Track, /* animate_tile_proc */
+ TileLoop_Track, /* tile_loop_clear */
+ ChangeTileOwner_Track, /* change_tile_owner_clear */
+ NULL, /* get_produced_cargo_proc */
+ VehicleEnter_Track, /* vehicle_enter_tile_proc */
+ GetSlopeTileh_Track, /* get_slope_tileh_proc */
};