diff options
author | smatz <smatz@openttd.org> | 2008-08-06 15:52:04 +0000 |
---|---|---|
committer | smatz <smatz@openttd.org> | 2008-08-06 15:52:04 +0000 |
commit | 0eade71bde0f70a3cedf36558ff2cf6804966ff8 (patch) | |
tree | 4bbdd1509d07a5080870e3ad391b4df8d7cc8221 /src | |
parent | 98d3d86004520bfb32e8e4d90c9f0c5210828deb (diff) | |
download | openttd-0eade71bde0f70a3cedf36558ff2cf6804966ff8.tar.xz |
(svn r14005) -Codechange: minor coding style fix
Diffstat (limited to 'src')
-rw-r--r-- | src/rail_cmd.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/rail_cmd.cpp b/src/rail_cmd.cpp index 80d5de887..73b12983d 100644 --- a/src/rail_cmd.cpp +++ b/src/rail_cmd.cpp @@ -294,8 +294,9 @@ static CommandCost CheckRailSlope(Slope tileh, TrackBits rail_bits, TrackBits ex /* check track/slope combination */ if ((f_new == FOUNDATION_INVALID) || - ((f_new != FOUNDATION_NONE) && (!_settings_game.construction.build_on_slopes || _is_old_ai_player)) - ) return_cmd_error(STR_1000_LAND_SLOPED_IN_WRONG_DIRECTION); + ((f_new != FOUNDATION_NONE) && (!_settings_game.construction.build_on_slopes || _is_old_ai_player))) { + return_cmd_error(STR_1000_LAND_SLOPED_IN_WRONG_DIRECTION); + } Foundation f_old = GetRailFoundation(tileh, existing); return CommandCost(EXPENSES_CONSTRUCTION, f_new != f_old ? _price.terraform : (Money)0); |