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 | 79e5f8286c383055bed16ace6dfced9a8d2210f5 (patch) | |
tree | f811bf894fe66407cf87a66b4cc9aa6de28eca4c | |
parent | ffb8c85b79ca7cf52fba1e90af69cc5e8de3283c (diff) | |
download | openttd-79e5f8286c383055bed16ace6dfced9a8d2210f5.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; } |