change colors, since orange & yellow are pretty indistinguishable

This commit is contained in:
TehRealSalt 2019-10-24 16:55:13 -04:00
parent b69d105af3
commit ed007f34cc

View file

@ -421,11 +421,11 @@ void K_DebugWaypointsVisualise(void)
} }
else if (waypoint->numnextwaypoints == 0 || waypoint->numprevwaypoints == 0) else if (waypoint->numnextwaypoints == 0 || waypoint->numprevwaypoints == 0)
{ {
debugmobj->color = SKINCOLOR_ORANGE; debugmobj->color = SKINCOLOR_YELLOW;
} }
else if (waypoint == players[displayplayers[0]].nextwaypoint) else if (waypoint == players[displayplayers[0]].nextwaypoint)
{ {
debugmobj->color = SKINCOLOR_YELLOW; debugmobj->color = SKINCOLOR_GREEN;
} }
else else
{ {