Changeset - r3061:54ce6d95f57d
[Not reviewed]
master
0 1 0
tron - 19 years ago 2006-02-21 18:15:59
tron@openttd.org
(svn r3650) Fix braino in r3649, spotted by Mihamix
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
road_cmd.c
Show inline comments
 
@@ -34,7 +34,7 @@ static bool HasTileRoadAt(TileIndex tile
 
	case MP_STREET:
 
		b = _m[tile].m5;
 

	
 
		switch (b & 0xF0) {
 
		switch (GB(b, 4, 4)) {
 
			case 0: break; // normal road
 
			case 1: b = (b & 8 ? 5 : 10); break; // level crossing
 
			case 2: return (~b & 3) == i; // depot
0 comments (0 inline, 0 general)