(svn r12239) -Fix [FS#1800] (r9729): inverted comments for SetRailType() and GetTrackBits() (michi_cc)
authorglx
Sun, 24 Feb 2008 22:20:31 +0000
changeset 9128 8372a371a3e1
parent 9127 5e79327476bc
child 9129 e4a00ee7237b
(svn r12239) -Fix [FS#1800] (r9729): inverted comments for SetRailType() and GetTrackBits() (michi_cc)
src/rail_map.h
--- a/src/rail_map.h	Sun Feb 24 22:16:36 2008 +0000
+++ b/src/rail_map.h	Sun Feb 24 22:20:31 2008 +0000
@@ -103,9 +103,9 @@
 }
 
 /**
- * Sets the track bits of the given tile
- * @param t the tile to set the track bits of
- * @param r the new track bits for the tile
+ * Sets the rail type of the given tile
+ * @param t the tile to set the rail type of
+ * @param r the new rail type for the tile
  */
 static inline void SetRailType(TileIndex t, RailType r)
 {
@@ -114,9 +114,9 @@
 
 
 /**
- * Gets the rail type of the given tile
- * @param t the tile to get the rail type from
- * @return the rail type of the tile
+ * Gets the track bits of the given tile
+ * @param t the tile to get the track bits from
+ * @return the track bits of the tile
  */
 static inline TrackBits GetTrackBits(TileIndex tile)
 {