Changeset - r1210:c146ba199eb2
[Not reviewed]
master
0 1 0
tron - 19 years ago 2005-01-29 13:33:14
tron@openttd.org
(svn r1714) Add missing include
1 file changed with 2 insertions and 0 deletions:
map.h
2
0 comments (0 inline, 0 general)
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))
 

	
0 comments (0 inline, 0 general)