# HG changeset patch # User peter1138 # Date 2005-11-12 00:29:13 # Node ID 0c8f1d4d23fe7711997f81f48be9c1115c6d0d1f # Parent 27ad3b929a5ba42b8259d86da9ab1a20d86b3a64 (svn r3168) - NewGRF: Fix "typo" in waypoint drawer :/ diff --git a/rail_cmd.c b/rail_cmd.c --- a/rail_cmd.c +++ b/rail_cmd.c @@ -1518,7 +1518,7 @@ static void DrawTile_Track(TileInfo *ti) if (IsRailWaypoint(m5) && HASBIT(_m[ti->tile].m3, 4)) { // look for customization - const StationSpec *stat = GetCustomStation(STAT_CLASS_WAYP, _m[ti->tile].m4); + const StationSpec *stat = GetCustomStation(STAT_CLASS_WAYP, _m[ti->tile].m4 + 1); if (stat != NULL) { DrawTileSeqStruct const *seq;