1
0
mirror of https://github.com/OpenTTD/OpenTTD synced 2026-01-27 06:04:25 +01:00

(svn r11897) -Fix: Replace an uint with TileIndex and a small coding style fix.

This commit is contained in:
frosch
2008-01-17 16:55:13 +00:00
parent 4f31704e2e
commit 978a7ca56a
3 changed files with 4 additions and 3 deletions

View File

@@ -577,7 +577,8 @@ static void AnimateTile_Water(TileIndex tile)
*
* @param tile tile to check
*/
static inline void MarkTileDirtyIfCanal(TileIndex tile) {
static inline void MarkTileDirtyIfCanal(TileIndex tile)
{
if (IsTileType(tile, MP_WATER) && IsCanal(tile)) MarkTileDirtyByTile(tile);
}