(svn r3765) Fix some naming glitches in r3763 and add missing svn properties
authortron
Sun, 05 Mar 2006 11:18:34 +0000
changeset 3145 349b745dfbf4
parent 3144 426b825578f9
child 3146 36523d434783
(svn r3765) Fix some naming glitches in r3763 and add missing svn properties
clear_map.h
road_map.h
tree_map.h
void_map.h
--- a/clear_map.h	Sun Mar 05 10:19:33 2006 +0000
+++ b/clear_map.h	Sun Mar 05 11:18:34 2006 +0000
@@ -1,7 +1,7 @@
 /* $Id$ */
 
-#ifndef CLEAR_H
-#define CLEAR_H
+#ifndef CLEAR_MAP_H
+#define CLEAR_MAP_H
 
 #include "macros.h"
 #include "tile.h"
--- a/road_map.h	Sun Mar 05 10:19:33 2006 +0000
+++ b/road_map.h	Sun Mar 05 11:18:34 2006 +0000
@@ -1,7 +1,7 @@
 /* $Id$ */
 
-#ifndef ROAD_H
-#define ROAD_H
+#ifndef ROAD_MAP_H
+#define ROAD_MAP_H
 
 #include "macros.h"
 #include "rail.h"
--- a/tree_map.h	Sun Mar 05 10:19:33 2006 +0000
+++ b/tree_map.h	Sun Mar 05 11:18:34 2006 +0000
@@ -1,7 +1,7 @@
 /* $Id$ */
 
-#ifndef TREE_H
-#define TREE_H
+#ifndef TREE_MAP_H
+#define TREE_MAP_H
 
 #include "macros.h"
 
--- a/void_map.h	Sun Mar 05 10:19:33 2006 +0000
+++ b/void_map.h	Sun Mar 05 11:18:34 2006 +0000
@@ -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 @@
 	_m[t].m5 = 0;
 	_m[t].extra = 0;
 }
+
+#endif