diff options
author | celestar <celestar@openttd.org> | 2006-04-07 07:40:44 +0000 |
---|---|---|
committer | celestar <celestar@openttd.org> | 2006-04-07 07:40:44 +0000 |
commit | a251b9373f2b272d2891ddc7bcaafd0f176b2120 (patch) | |
tree | 89f96d2464372415405a32b91546a0bd1f0cdd9c | |
parent | f2cb8b8bd616c61ddf1b0e84211493a8bc904ebf (diff) | |
download | openttd-a251b9373f2b272d2891ddc7bcaafd0f176b2120.tar.xz |
(svn r4307) -Fix: Coding style in previous commit. Thanks to Tron for instant notice
-rw-r--r-- | elrail.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -95,8 +95,9 @@ static TrackBits GetRailTrackBitsUniversal(TileIndex t, byte *override) if (IsTransportUnderBridge(t) && GetTransportTypeUnderBridge(t) == TRANSPORT_RAIL) { return GetRailBitsUnderBridge(t); - } else + } else { return 0; + } } else { if (override != NULL && DistanceMax(t, GetOtherBridgeEnd(t)) > 1) *override = 1 << GetBridgeRampDirection(t); |