summaryrefslogtreecommitdiff
path: root/src/clear_map.h
diff options
context:
space:
mode:
authorbelugas <belugas@openttd.org>2007-02-23 11:50:43 +0000
committerbelugas <belugas@openttd.org>2007-02-23 11:50:43 +0000
commit6d199fcdb75e40ffdde0e612c301f2e74b901678 (patch)
tree28f27070bd508fef07617bf83c63d2a16a0ccc95 /src/clear_map.h
parent7e73413709b3f830d83338421298af5dc20581db (diff)
downloadopenttd-6d199fcdb75e40ffdde0e612c301f2e74b901678.tar.xz
(svn r8859) -Cleanup: doxygen changes. Mostly @files missing tags and a few comments style.
Diffstat (limited to 'src/clear_map.h')
-rw-r--r--src/clear_map.h16
1 files changed, 9 insertions, 7 deletions
diff --git a/src/clear_map.h b/src/clear_map.h
index 88c3f4af0..b44d7ec99 100644
--- a/src/clear_map.h
+++ b/src/clear_map.h
@@ -1,5 +1,7 @@
/* $Id$ */
+/** @file clear_map.h */
+
#ifndef CLEAR_MAP_H
#define CLEAR_MAP_H
@@ -11,12 +13,12 @@
* valid densities (bits 0...1) in comments after the enum
*/
typedef enum ClearGround {
- CLEAR_GRASS = 0, // 0-3
- CLEAR_ROUGH = 1, // 3
- CLEAR_ROCKS = 2, // 3
- CLEAR_FIELDS = 3, // 3
- CLEAR_SNOW = 4, // 0-3
- CLEAR_DESERT = 5 // 1,3
+ CLEAR_GRASS = 0, ///< 0-3
+ CLEAR_ROUGH = 1, ///< 3
+ CLEAR_ROCKS = 2, ///< 3
+ CLEAR_FIELDS = 3, ///< 3
+ CLEAR_SNOW = 4, ///< 0-3
+ CLEAR_DESERT = 5 ///< 1,3
} ClearGround;
@@ -134,7 +136,7 @@ static inline void MakeClear(TileIndex t, ClearGround g, uint density)
_m[t].m3 = 0;
_m[t].m4 = 0 << 5 | 0 << 2;
SetClearGroundDensity(t, g, density);
- SB(_m[t].m6, 2, 4, 0); ///< Clear the rest of m6, bits 2 to 5
+ SB(_m[t].m6, 2, 4, 0); // Clear the rest of m6, bits 2 to 5
}