summaryrefslogtreecommitdiff
path: root/tunnelbridge_cmd.c
diff options
context:
space:
mode:
Diffstat (limited to 'tunnelbridge_cmd.c')
-rw-r--r--tunnelbridge_cmd.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tunnelbridge_cmd.c b/tunnelbridge_cmd.c
index bcec4f093..8178d162a 100644
--- a/tunnelbridge_cmd.c
+++ b/tunnelbridge_cmd.c
@@ -1466,12 +1466,12 @@ static const byte _tunnel_fractcoord_7[4] = {0x52, 0x85, 0x96, 0x49};
static uint32 VehicleEnter_TunnelBridge(Vehicle *v, TileIndex tile, int x, int y)
{
- int z;
int dir, vdir;
- byte fc;
if (GB(_m[tile].m5, 4, 4) == 0) {
- z = GetSlopeZ(x, y) - v->z_pos;
+ int z = GetSlopeZ(x, y) - v->z_pos;
+ byte fc;
+
if (myabs(z) > 2) return 8;
if (v->type == VEH_Train) {