(svn r1898) Remove some unused macros from macros.h and move some others to more appropriate headers

This commit is contained in:
tron
2005-02-22 12:48:03 +00:00
parent 76b016dd58
commit a370af76d2
6 changed files with 13 additions and 25 deletions

1
map.h
View File

@@ -7,6 +7,7 @@
#define TILE_XY(x,y) (((y) << MapLogX()) + (x))
#define TILE_MASK(x) ((x) & ((1 << (MapLogX() + MapLogY())) - 1))
#define TILE_ASSERT(x) assert(TILE_MASK(x) == (x));
extern byte *_map_type_and_height;
extern byte *_map_owner;