diff options
author | celestar <celestar@openttd.org> | 2006-04-12 15:21:33 +0000 |
---|---|---|
committer | celestar <celestar@openttd.org> | 2006-04-12 15:21:33 +0000 |
commit | 75f978626a9df3e32410bbbece844b88cad8b321 (patch) | |
tree | 2c5f8b719c385b1ccf3107cee32b977d9daf5f5d | |
parent | 17da0bb976c9dd24a386fef203acef8f99e5cfbb (diff) | |
download | openttd-75f978626a9df3e32410bbbece844b88cad8b321.tar.xz |
(svn r4391) -Fix: faulty ")" in previous commit
-rw-r--r-- | tunnelbridge_cmd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tunnelbridge_cmd.c b/tunnelbridge_cmd.c index 13ca8af7c..d4d4ff1e8 100644 --- a/tunnelbridge_cmd.c +++ b/tunnelbridge_cmd.c @@ -933,7 +933,7 @@ static void DrawTile_TunnelBridge(TileInfo *ti) image += GetTunnelDirection(ti->tile) * 2; DrawGroundSprite(image); - if (GetRailType(ti->tile)) == RAILTYPE_ELECTRIC) DrawCatenary(ti); + if (GetRailType(ti->tile) == RAILTYPE_ELECTRIC) DrawCatenary(ti); AddSortableSpriteToDraw(image+1, ti->x + 15, ti->y + 15, 1, 1, 8, (byte)ti->z); } else if (IsBridge(ti->tile)) { // XXX is this necessary? |