mirror of https://github.com/OpenTTD/OpenTTD
(svn r12239) -Fix [FS#1800] (r9729): inverted comments for SetRailType() and GetTrackBits() (michi_cc)
parent
ed1e402960
commit
f352512c8d
|
@ -103,9 +103,9 @@ static inline RailType GetRailType(TileIndex t)
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the track bits of the given tile
|
* Sets the rail type of the given tile
|
||||||
* @param t the tile to set the track bits of
|
* @param t the tile to set the rail type of
|
||||||
* @param r the new track bits for the tile
|
* @param r the new rail type for the tile
|
||||||
*/
|
*/
|
||||||
static inline void SetRailType(TileIndex t, RailType r)
|
static inline void SetRailType(TileIndex t, RailType r)
|
||||||
{
|
{
|
||||||
|
@ -114,9 +114,9 @@ static inline void SetRailType(TileIndex t, RailType r)
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the rail type of the given tile
|
* Gets the track bits of the given tile
|
||||||
* @param t the tile to get the rail type from
|
* @param t the tile to get the track bits from
|
||||||
* @return the rail type of the tile
|
* @return the track bits of the tile
|
||||||
*/
|
*/
|
||||||
static inline TrackBits GetTrackBits(TileIndex tile)
|
static inline TrackBits GetTrackBits(TileIndex tile)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue