summaryrefslogtreecommitdiff
path: root/src/rail_cmd.cpp
diff options
context:
space:
mode:
authoralberth <alberth@openttd.org>2010-10-30 17:51:07 +0000
committeralberth <alberth@openttd.org>2010-10-30 17:51:07 +0000
commit7e48d85104549cbb3604aa7eb262b922dbc3f640 (patch)
tree0afba23f2fce7664320853c8deaaf293b8363e16 /src/rail_cmd.cpp
parentca8d55ebcd368998aac4a46f8697a5c4585df66d (diff)
downloadopenttd-7e48d85104549cbb3604aa7eb262b922dbc3f640.tar.xz
(svn r21060) -Doc: Improved wording of comments (mostly by __ln__)
Diffstat (limited to 'src/rail_cmd.cpp')
-rw-r--r--src/rail_cmd.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rail_cmd.cpp b/src/rail_cmd.cpp
index 59f52c524..11633e061 100644
--- a/src/rail_cmd.cpp
+++ b/src/rail_cmd.cpp
@@ -1634,7 +1634,7 @@ static CommandCost ClearTile_Track(TileIndex tile, DoCommandFlag flags)
case RAIL_TILE_SIGNALS:
case RAIL_TILE_NORMAL: {
Slope tileh = GetTileSlope(tile, NULL);
- /* Is there flat water on the lower halftile, that gets cleared expensively? */
+ /* Is there flat water on the lower halftile that gets cleared expensively? */
bool water_ground = (GetRailGroundType(tile) == RAIL_GROUND_WATER && IsSlopeWithOneCornerRaised(tileh));
TrackBits tracks = GetTrackBits(tile);
@@ -2830,7 +2830,7 @@ static CommandCost TerraformTile_Track(TileIndex tile, DoCommandFlag flags, uint
Slope tileh_old = GetTileSlope(tile, &z_old);
if (IsPlainRail(tile)) {
TrackBits rail_bits = GetTrackBits(tile);
- /* Is there flat water on the lower halftile, that must be cleared expensively? */
+ /* Is there flat water on the lower halftile that must be cleared expensively? */
bool was_water = (GetRailGroundType(tile) == RAIL_GROUND_WATER && IsSlopeWithOneCornerRaised(tileh_old));
/* First test autoslope. However if it succeeds we still have to test the rest, because non-autoslope terraforming is cheaper. */