summaryrefslogtreecommitdiff
path: root/rail_cmd.c
diff options
context:
space:
mode:
authortron <tron@openttd.org>2006-06-21 11:30:28 +0000
committertron <tron@openttd.org>2006-06-21 11:30:28 +0000
commit9e28713c4c33687e85243f80e7edb9d5bd804aff (patch)
treeca3c65b2edad228eaf49d4c9e834665bd11e8931 /rail_cmd.c
parentac217b2eea7779478951179e286a2cad3d36aaab (diff)
downloadopenttd-9e28713c4c33687e85243f80e7edb9d5bd804aff.tar.xz
(svn r5326) Remove the indicator bit for custom waypoint graphics, because it just contains redundant information
Yup-yup-ed by: peter1138
Diffstat (limited to 'rail_cmd.c')
-rw-r--r--rail_cmd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/rail_cmd.c b/rail_cmd.c
index 028c8592c..1039509f9 100644
--- a/rail_cmd.c
+++ b/rail_cmd.c
@@ -1325,7 +1325,7 @@ static void DrawTile_Track(TileInfo *ti)
if (ti->tileh != SLOPE_FLAT) DrawFoundation(ti, ti->tileh);
- if (IsRailWaypoint(ti->tile) && IsCustomWaypoint(ti->tile)) {
+ if (IsRailWaypoint(ti->tile)) {
// look for customization
byte stat_id = GetWaypointByTile(ti->tile)->stat_id;
const StationSpec *statspec = GetCustomStationSpec(STAT_CLASS_WAYP, stat_id);