summaryrefslogtreecommitdiff
path: root/void_map.h
diff options
context:
space:
mode:
authortron <tron@openttd.org>2006-03-05 11:18:34 +0000
committertron <tron@openttd.org>2006-03-05 11:18:34 +0000
commit62abd9c1e288a8cd3154245fef9ec48d76a85135 (patch)
tree66502e0eb8bf313576d857e61b7b5801120b0570 /void_map.h
parent4efa560ffc49f47d8b8414ea30d3b1c5e4dbfd74 (diff)
downloadopenttd-62abd9c1e288a8cd3154245fef9ec48d76a85135.tar.xz
(svn r3765) Fix some naming glitches in r3763 and add missing svn properties
Diffstat (limited to 'void_map.h')
-rw-r--r--void_map.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/void_map.h b/void_map.h
index 22043399a..f1fe9b6fd 100644
--- a/void_map.h
+++ b/void_map.h
@@ -1,5 +1,8 @@
/* $Id$ */
+#ifndef VOID_MAP_H
+#define VOID_MAP_H
+
static inline void MakeVoid(TileIndex t)
{
SetTileType(t, MP_VOID);
@@ -11,3 +14,5 @@ static inline void MakeVoid(TileIndex t)
_m[t].m5 = 0;
_m[t].extra = 0;
}
+
+#endif