Show required objectives in red.
This commit is contained in:
parent
7df76683ad
commit
9bda46bb9b
|
@ -223,7 +223,7 @@ void drawMissionStatus(void)
|
||||||
|
|
||||||
for (o = world.objectiveHead.next ; o != NULL ; o = o->next)
|
for (o = world.objectiveHead.next ; o != NULL ; o = o->next)
|
||||||
{
|
{
|
||||||
c = colors.white;
|
c = o->required ? colors.red : colors.white;
|
||||||
status = _("Incomplete");
|
status = _("Incomplete");
|
||||||
|
|
||||||
if (o->currentValue == o->targetValue)
|
if (o->currentValue == o->targetValue)
|
||||||
|
|
Loading…
Reference in New Issue