1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-30 18:09:09 +00:00

(svn r1714) Add missing include

This commit is contained in:
tron
2005-01-29 13:33:14 +00:00
parent 5885b31bb4
commit a2de96abc0

2
map.h
View File

@@ -1,6 +1,8 @@
#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))