mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-01-22 23:26:34 +00:00
73ff939ddb
the newhouses grf specs, so all newhouses grfs will be playable in the game. Many thanks to everyone who contributed code and ideas, and all the testers who found things we missed.
20 lines
275 B
C
20 lines
275 B
C
/* $Id$ */
|
|
|
|
#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 */
|