summaryrefslogtreecommitdiff
path: root/waypoint.c
diff options
context:
space:
mode:
authorpeter1138 <peter1138@openttd.org>2006-04-12 12:33:21 +0000
committerpeter1138 <peter1138@openttd.org>2006-04-12 12:33:21 +0000
commit7b6e932d82b60088d63cbdb947bd81dae01de404 (patch)
tree9b9bc8cec16c5409db091066f4f648d4e976f69f /waypoint.c
parent46eab6aec6268b44032362abe9b95dd5337ecd7a (diff)
downloadopenttd-7b6e932d82b60088d63cbdb947bd81dae01de404.tar.xz
(svn r4383) - Codechange: Remove extraneous code from 4354; no need to get RailTypeInfo when we already have it...
Diffstat (limited to 'waypoint.c')
-rw-r--r--waypoint.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/waypoint.c b/waypoint.c
index 00cc4f941..ea034529a 100644
--- a/waypoint.c
+++ b/waypoint.c
@@ -412,7 +412,7 @@ void DrawWaypointSprite(int x, int y, int stat_id, RailType railtype)
cust = &stat->renderdata[2];
img = cust->ground_sprite;
- img += (img < _custom_sprites_base) ? rti->total_offset : GetRailTypeInfo(railtype)->custom_ground_offset;
+ img += (img < _custom_sprites_base) ? rti->total_offset : rti->custom_ground_offset;
if (img & PALETTE_MODIFIER_COLOR) img = (img & SPRITE_MASK);
DrawSprite(img, x, y);