diff options
author | tron <tron@openttd.org> | 2006-04-25 07:32:33 +0000 |
---|---|---|
committer | tron <tron@openttd.org> | 2006-04-25 07:32:33 +0000 |
commit | 18ad0ae50ee5cc57c571677de1a4e458d2d9de08 (patch) | |
tree | c52854038a7463251f059ce8699ab9ab6a257684 /industry_cmd.c | |
parent | 288f4eed6577de01c9dafeee3dd2e803030da9fb (diff) | |
download | openttd-18ad0ae50ee5cc57c571677de1a4e458d2d9de08.tar.xz |
(svn r4572) Remove vehicle_leave_tile_proc
There's exactly one implemented function (unbarring a level crossing) and one place where it can be triggered (a train leaves a level crossing)
It's a bit overkill, so just handle this one case where it can happen
Diffstat (limited to 'industry_cmd.c')
-rw-r--r-- | industry_cmd.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/industry_cmd.c b/industry_cmd.c index 9da3044cd..10a69fc27 100644 --- a/industry_cmd.c +++ b/industry_cmd.c @@ -1891,7 +1891,6 @@ const TileTypeProcs _tile_type_industry_procs = { ChangeTileOwner_Industry, /* change_tile_owner_proc */ GetProducedCargo_Industry, /* get_produced_cargo_proc */ NULL, /* vehicle_enter_tile_proc */ - NULL, /* vehicle_leave_tile_proc */ GetSlopeTileh_Industry, /* get_slope_tileh_proc */ }; |