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
commitebec656110fc5f868421f76a6acbc800c5dc77c6 (patch)
tree66502e0eb8bf313576d857e61b7b5801120b0570 /void_map.h
parentcc4f5b4e6f8c99eb94dfb5513b4dc807440adf09 (diff)
downloadopenttd-ebec656110fc5f868421f76a6acbc800c5dc77c6.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