view src/void_map.h @ 6448:eb2f3db29626 draft

(svn r9596) -Fix (r9563): (non-)transparency of station signs was confused with building transparency...
author peter1138 <peter1138@openttd.org>
date Wed, 11 Apr 2007 20:13:32 +0000
parents 72ac8bfaa32f
children 5459e8d2dc0d
line wrap: on
line source

/* $Id$ */

/** @file void_map.h */

#ifndef VOID_MAP_H
#define VOID_MAP_H

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].m6 = 0;
	_me[t].m7 = 0;
}

#endif /* VOID_MAP_H */