mirror of https://github.com/OpenTTD/OpenTTD
(svn r3765) Fix some naming glitches in r3763 and add missing svn properties
parent
cc4f5b4e6f
commit
ebec656110
|
@ -1,7 +1,7 @@
|
||||||
/* $Id$ */
|
/* $Id$ */
|
||||||
|
|
||||||
#ifndef CLEAR_H
|
#ifndef CLEAR_MAP_H
|
||||||
#define CLEAR_H
|
#define CLEAR_MAP_H
|
||||||
|
|
||||||
#include "macros.h"
|
#include "macros.h"
|
||||||
#include "tile.h"
|
#include "tile.h"
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
/* $Id$ */
|
/* $Id$ */
|
||||||
|
|
||||||
#ifndef ROAD_H
|
#ifndef ROAD_MAP_H
|
||||||
#define ROAD_H
|
#define ROAD_MAP_H
|
||||||
|
|
||||||
#include "macros.h"
|
#include "macros.h"
|
||||||
#include "rail.h"
|
#include "rail.h"
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
/* $Id$ */
|
/* $Id$ */
|
||||||
|
|
||||||
#ifndef TREE_H
|
#ifndef TREE_MAP_H
|
||||||
#define TREE_H
|
#define TREE_MAP_H
|
||||||
|
|
||||||
#include "macros.h"
|
#include "macros.h"
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,8 @@
|
||||||
/* $Id$ */
|
/* $Id$ */
|
||||||
|
|
||||||
|
#ifndef VOID_MAP_H
|
||||||
|
#define VOID_MAP_H
|
||||||
|
|
||||||
static inline void MakeVoid(TileIndex t)
|
static inline void MakeVoid(TileIndex t)
|
||||||
{
|
{
|
||||||
SetTileType(t, MP_VOID);
|
SetTileType(t, MP_VOID);
|
||||||
|
@ -11,3 +14,5 @@ static inline void MakeVoid(TileIndex t)
|
||||||
_m[t].m5 = 0;
|
_m[t].m5 = 0;
|
||||||
_m[t].extra = 0;
|
_m[t].extra = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue