summaryrefslogtreecommitdiff
path: root/void.h
blob: 22043399acd6556cb9e66ca45367b3ea4d154482 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* $Id$ */

static inline void MakeVoid(TileIndex t)
{
	SetTileType(t, MP_VOID);
	SetTileHeight(t, 0);
	_m[t].m1 = 0;
	_m[t].m2 = 0;
	_m[t].m3 = 0;
	_m[t].m4 = 0;
	_m[t].m5 = 0;
	_m[t].extra = 0;
}