(svn r1937) TILE_FROM_XY() returns a TileIndex, not an int

This commit is contained in:
tron 2005-03-06 12:46:29 +00:00
parent e748280622
commit 9973e97b84
1 changed files with 1 additions and 1 deletions

2
map.h
View File

@ -3,7 +3,7 @@
#include "stdafx.h"
#define TILE_FROM_XY(x,y) (int)((((y) >> 4) << MapLogX()) + ((x) >> 4))
#define TILE_FROM_XY(x,y) (TileIndex)((((y) >> 4) << MapLogX()) + ((x) >> 4))
#define TILE_XY(x,y) (((y) << MapLogX()) + (x))
#define TILE_MASK(x) ((x) & ((1 << (MapLogX() + MapLogY())) - 1))