diff options
author | tron <tron@openttd.org> | 2006-02-21 18:15:59 +0000 |
---|---|---|
committer | tron <tron@openttd.org> | 2006-02-21 18:15:59 +0000 |
commit | 8e6b55c9a09344090a0f00b2d49ca0c8de5dcede (patch) | |
tree | 773f4de45d3ae987e9d00274c33f11d3e9557c76 | |
parent | 6f531eb9f64becab413b6d223725aa43dbe4c00a (diff) | |
download | openttd-8e6b55c9a09344090a0f00b2d49ca0c8de5dcede.tar.xz |
(svn r3650) Fix braino in r3649, spotted by Mihamix
-rw-r--r-- | road_cmd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/road_cmd.c b/road_cmd.c index 902a2932d..3a1ef1a1f 100644 --- a/road_cmd.c +++ b/road_cmd.c @@ -34,7 +34,7 @@ static bool HasTileRoadAt(TileIndex tile, int i) 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 |