summaryrefslogtreecommitdiff
path: root/map.c
diff options
context:
space:
mode:
authortron <tron@openttd.org>2005-01-05 13:32:03 +0000
committertron <tron@openttd.org>2005-01-05 13:32:03 +0000
commit67161506ad98a7636d3c9f141b5595481d079e93 (patch)
treeb9a5829b3d37c53a2de48d1ef28960f41804f4dc /map.c
parent2543158c8e0d105148bc38522fba43aa3428d76a (diff)
downloadopenttd-67161506ad98a7636d3c9f141b5595481d079e93.tar.xz
(svn r1386) Move TileIndexDiff to map.h
Move _tileoffs_by_dir to map.[ch] and encapsulate it in TileOffsByDir()
Diffstat (limited to 'map.c')
-rw-r--r--map.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/map.c b/map.c
index 1c349e40f..b67355ecf 100644
--- a/map.c
+++ b/map.c
@@ -14,3 +14,10 @@ byte _map3_hi [MAP_SIZE];
byte _map_owner [MAP_SIZE];
uint16 _map2 [MAP_SIZE];
byte _map_extra_bits [MAP_SIZE / 4];
+
+const TileIndexDiff _tileoffs_by_dir[4] = {
+ TILE_XY(-1, 0),
+ TILE_XY(0, 1),
+ TILE_XY(1, 0),
+ TILE_XY(0, -1),
+};