mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-04 06:00:15 +00:00
(svn r3905) -Fix: When returning the rail type under a bridge, check if there are rails at all
This commit is contained in:
parent
483c8f7018
commit
35fa516ecb
2
rail.c
2
rail.c
@ -133,7 +133,7 @@ RailType GetTileRailType(TileIndex tile, Trackdir trackdir)
|
||||
if ((_m[tile].m5 & 0xC6) == 0xC0 && ((DiagDirection)(_m[tile].m5 & 0x1)) == (exitdir & 0x1))
|
||||
type = (_m[tile].m3 >> 4) & RAILTYPE_MASK;
|
||||
/* under bridge (any type) */
|
||||
if ((_m[tile].m5 & 0xC0) == 0xC0 && (_m[tile].m5 & 0x1U) != (exitdir & 0x1))
|
||||
if ((_m[tile].m5 & 0xF8) == 0xE0 && (_m[tile].m5 & 0x1U) != (exitdir & 0x1))
|
||||
type = _m[tile].m3 & RAILTYPE_MASK;
|
||||
break;
|
||||
default:
|
||||
|
Loading…
Reference in New Issue
Block a user