(svn r16850) -Codechange: unify some naming of variables between waypoints and stations.

This commit is contained in:
rubidium
2009-07-16 20:15:28 +00:00
parent 1f29e38b83
commit dea1144bcb
6 changed files with 15 additions and 15 deletions

View File

@@ -1218,7 +1218,7 @@ static void ViewportAddSigns(DrawPixelInfo *dpi)
static void AddWaypoint(const Waypoint *wp, StringID str, uint16 width)
{
AddStringToDraw(wp->sign.left + 1, wp->sign.top + 1, str, wp->index, 0, (wp->deleted ? 0xE : _company_colours[wp->owner]), width);
AddStringToDraw(wp->sign.left + 1, wp->sign.top + 1, str, wp->index, 0, (wp->delete_ctr != 0 ? 0xE : _company_colours[wp->owner]), width);
}