diff options
author | tron <tron@openttd.org> | 2005-03-04 10:34:44 +0000 |
---|---|---|
committer | tron <tron@openttd.org> | 2005-03-04 10:34:44 +0000 |
commit | 6f184a0471dc12a5bbdf61a333b601aa7b1a5ca4 (patch) | |
tree | 3ccaf5b67c0a7504ad6fcf2f507c91d0ff734ab7 | |
parent | 0067f681176e02874dc083a0defb692c734f6866 (diff) | |
download | openttd-6f184a0471dc12a5bbdf61a333b601aa7b1a5ca4.tar.xz |
(svn r1924) Use same type names in declaration and implementation
-rw-r--r-- | functions.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/functions.h b/functions.h index 4e6681680..92c03392c 100644 --- a/functions.h +++ b/functions.h @@ -8,7 +8,7 @@ /* landscape.c */ void FindLandscapeHeight(TileInfo *ti, uint x, uint y); -void FindLandscapeHeightByTile(TileInfo *ti, uint tile); +void FindLandscapeHeightByTile(TileInfo *ti, TileIndex tile); void DoClearSquare(uint tile); void CDECL ModifyTile(uint tile, uint flags, ...); @@ -51,7 +51,7 @@ static inline Point RemapCoords2(int x, int y) void DrawHillyLandTile(TileInfo *ti); void DrawClearLandTile(TileInfo *ti, byte set); void DrawClearLandFence(TileInfo *ti, byte img); -void TileLoopClearHelper(uint tile); +void TileLoopClearHelper(TileIndex tile); /* station_land.c */ void StationPickerDrawSprite(int x, int y, int railtype, int image); |