summaryrefslogtreecommitdiff
path: root/src/tunnelbridge_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/tunnelbridge_cmd.cpp
parent759fb5937d50cd7a68da4815b49194a9006a2c51 (diff)
downloadopenttd-e840aabf8da0c74a312caf22b6405f6d87403cc4.tar.xz
(svn r14176) -Fix: better 'safe' than ... 'save'
Diffstat (limited to 'src/tunnelbridge_cmd.cpp')
-rw-r--r--src/tunnelbridge_cmd.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tunnelbridge_cmd.cpp b/src/tunnelbridge_cmd.cpp
index 5b83c2ddd..fcf05ffb8 100644
--- a/src/tunnelbridge_cmd.cpp
+++ b/src/tunnelbridge_cmd.cpp
@@ -1472,7 +1472,7 @@ static CommandCost TerraformTile_TunnelBridge(TileIndex tile, uint32 flags, uint
uint z_old;
Slope tileh_old = GetTileSlope(tile, &z_old);
- /* Check if new slope is valid for bridges in general (so we can savely call GetBridgeFoundation()) */
+ /* Check if new slope is valid for bridges in general (so we can safely call GetBridgeFoundation()) */
if ((direction == DIAGDIR_NW) || (direction == DIAGDIR_NE)) {
CheckBridgeSlopeSouth(axis, &tileh_old, &z_old);
res = CheckBridgeSlopeSouth(axis, &tileh_new, &z_new);