File diff r1209:5955f8748394 → r1210:c146ba199eb2
map.h
Show inline comments
 
#ifndef MAP_H
 
#define MAP_H
 

	
 
#include "stdafx.h"
 

	
 
#define TILE_FROM_XY(x,y) (int)((((y) >> 4) << MapLogX()) + ((x) >> 4))
 
#define TILE_XY(x,y) (((y) << MapLogX()) + (x))