Show as green if >= target value. Can happen with dynamic objective targets.

This commit is contained in:
Steve 2018-02-11 12:45:02 +00:00
parent 58c398475c
commit e9a6a42b4c
1 changed files with 1 additions and 1 deletions

View File

@ -228,7 +228,7 @@ void drawMissionStatus(void)
c = o->required ? colors.red : colors.white;
status = _("Incomplete");
if (o->currentValue == o->targetValue)
if (o->currentValue >= o->targetValue)
{
c = colors.green;
status = _("Complete");