summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorsmatz <smatz@openttd.org>2008-12-26 22:44:13 +0000
committersmatz <smatz@openttd.org>2008-12-26 22:44:13 +0000
commitf1296e06c553203e6a61f9ef43a2e782f4024e71 (patch)
treede8a0e35eb624115caa7ba3cd4511a6f1df150b8 /src
parent027e431b9932fb720b0f5da4248839c1f487874c (diff)
downloadopenttd-f1296e06c553203e6a61f9ef43a2e782f4024e71.tar.xz
(svn r14751) -Codechange: put VehicleEnterTile declaration where it should be and use correct return type
Diffstat (limited to 'src')
-rw-r--r--src/tile_cmd.h1
-rw-r--r--src/vehicle.cpp2
-rw-r--r--src/vehicle_func.h2
3 files changed, 2 insertions, 3 deletions
diff --git a/src/tile_cmd.h b/src/tile_cmd.h
index a3be7ea44..5baa3fa25 100644
--- a/src/tile_cmd.h
+++ b/src/tile_cmd.h
@@ -152,6 +152,7 @@ struct TileTypeProcs {
extern const TileTypeProcs * const _tile_type_procs[16];
TrackStatus GetTileTrackStatus(TileIndex tile, TransportType mode, uint sub_mode, DiagDirection side = INVALID_DIAGDIR);
+VehicleEnterTileStatus VehicleEnterTile(Vehicle *v, TileIndex tile, int x, int y);
void GetAcceptedCargo(TileIndex tile, AcceptedCargo ac);
void ChangeTileOwner(TileIndex tile, Owner old_owner, Owner new_owner);
void AnimateTile(TileIndex tile);
diff --git a/src/vehicle.cpp b/src/vehicle.cpp
index 6e1af2333..51166d6c0 100644
--- a/src/vehicle.cpp
+++ b/src/vehicle.cpp
@@ -1862,7 +1862,7 @@ Trackdir GetVehicleTrackdir(const Vehicle *v)
* @return Some meta-data over the to be entered tile.
* @see VehicleEnterTileStatus to see what the bits in the return value mean.
*/
-uint32 VehicleEnterTile(Vehicle *v, TileIndex tile, int x, int y)
+VehicleEnterTileStatus VehicleEnterTile(Vehicle *v, TileIndex tile, int x, int y)
{
return _tile_type_procs[GetTileType(tile)]->vehicle_enter_tile_proc(v, tile, x, y);
}
diff --git a/src/vehicle_func.h b/src/vehicle_func.h
index 4b80ab1c1..ee2d2607a 100644
--- a/src/vehicle_func.h
+++ b/src/vehicle_func.h
@@ -47,8 +47,6 @@ void ViewportAddVehicles(DrawPixelInfo *dpi);
SpriteID GetRotorImage(const Vehicle *v);
-uint32 VehicleEnterTile(Vehicle *v, TileIndex tile, int x, int y);
-
StringID VehicleInTheWayErrMsg(const Vehicle* v);
bool HasVehicleOnTunnelBridge(TileIndex tile, TileIndex endtile, const Vehicle *ignore = NULL);