diff options
author | peter1138 <peter1138@openttd.org> | 2006-01-23 17:43:46 +0000 |
---|---|---|
committer | peter1138 <peter1138@openttd.org> | 2006-01-23 17:43:46 +0000 |
commit | 93082104dda8f0a550609f1f24ded10f407c755e (patch) | |
tree | f811bf894fe66407cf87a66b4cc9aa6de28eca4c | |
parent | 188352ea3e8c0ea27518f5b5a436fa2d982eeefd (diff) | |
download | openttd-93082104dda8f0a550609f1f24ded10f407c755e.tar.xz |
(svn r3420) - Fix typo made back in r2997...
-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 cad33f991..0a0dad432 100644 --- a/road_cmd.c +++ b/road_cmd.c @@ -811,7 +811,7 @@ static void DrawRoadBits(TileInfo *ti, byte road, byte ground_type, bool snow, b if (ground_type >= 6) { // Road works - DrawGroundSprite(HASBIT(road, 4) ? SPR_EXCAVATION_X : SPR_EXCAVATION_Y); + DrawGroundSprite(HASBIT(road, 3) ? SPR_EXCAVATION_X : SPR_EXCAVATION_Y); return; } |