summaryrefslogtreecommitdiff
path: root/src/road_cmd.cpp
diff options
context:
space:
mode:
authorsmatz <smatz@openttd.org>2008-08-25 20:54:34 +0000
committersmatz <smatz@openttd.org>2008-08-25 20:54:34 +0000
commite840aabf8da0c74a312caf22b6405f6d87403cc4 (patch)
tree42fa63ac300807cc8271f18d5ce378744da7412a /src/road_cmd.cpp
parent759fb5937d50cd7a68da4815b49194a9006a2c51 (diff)
downloadopenttd-e840aabf8da0c74a312caf22b6405f6d87403cc4.tar.xz
(svn r14176) -Fix: better 'safe' than ... 'save'
Diffstat (limited to 'src/road_cmd.cpp')
-rw-r--r--src/road_cmd.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/road_cmd.cpp b/src/road_cmd.cpp
index ba068172e..44a0ae854 100644
--- a/src/road_cmd.cpp
+++ b/src/road_cmd.cpp
@@ -1601,7 +1601,7 @@ static CommandCost TerraformTile_Road(TileIndex tile, uint32 flags, uint z_new,
case ROAD_TILE_NORMAL: {
RoadBits bits = GetAllRoadBits(tile);
RoadBits bits_copy = bits;
- /* Check if the slope-road_bits combination is valid at all, i.e. it is save to call GetRoadFoundation(). */
+ /* Check if the slope-road_bits combination is valid at all, i.e. it is safe to call GetRoadFoundation(). */
if (!CmdFailed(CheckRoadSlope(tileh_new, &bits_copy, ROAD_NONE, ROAD_NONE))) {
/* CheckRoadSlope() sometimes changes the road_bits, if it does not agree with them. */
if (bits == bits_copy) {