(svn r15593) -Change: the background of the the waypoint sign is now in the company color.

This commit is contained in:
yexo 2009-02-27 22:26:06 +00:00
parent e01106f66b
commit dbec2ec628
1 changed files with 1 additions and 1 deletions

View File

@ -1215,7 +1215,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 : 11), width);
AddStringToDraw(wp->sign.left + 1, wp->sign.top + 1, str, wp->index, 0, (wp->deleted ? 0xE : _company_colours[wp->owner]), width);
}