summaryrefslogtreecommitdiff
path: root/src/map_func.h
diff options
context:
space:
mode:
authorfrosch <frosch@openttd.org>2008-01-17 16:55:13 +0000
committerfrosch <frosch@openttd.org>2008-01-17 16:55:13 +0000
commit978a7ca56aa657885ef3cb5fecb9177a5dadb870 (patch)
treedc097272bb93f6c019f9ed773ae4fdb6106339ea /src/map_func.h
parent4f31704e2e295fb06cbe53d43f5665fe8f70aed1 (diff)
downloadopenttd-978a7ca56aa657885ef3cb5fecb9177a5dadb870.tar.xz
(svn r11897) -Fix: Replace an uint with TileIndex and a small coding style fix.
Diffstat (limited to 'src/map_func.h')
-rw-r--r--src/map_func.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map_func.h b/src/map_func.h
index 28bf80a27..8b313d7f6 100644
--- a/src/map_func.h
+++ b/src/map_func.h
@@ -227,7 +227,7 @@ static inline TileIndexDiff ToTileIndexDiff(TileIndexDiffC tidc)
/**
* Adds an offset to a tile and check if we are still on the map.
*/
-uint TileAddWrap(TileIndex tile, int addx, int addy);
+TileIndex TileAddWrap(TileIndex tile, int addx, int addy);
/**
* Returns the TileIndexDiffC offset from a DiagDirection.