From 9bda46bb9b6fc89ce6943a9f824dfdf0e20ad195 Mon Sep 17 00:00:00 2001 From: Steve Date: Thu, 8 Feb 2018 08:21:37 +0000 Subject: [PATCH] Show required objectives in red. --- src/world/hud.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/world/hud.c b/src/world/hud.c index 5d7a43d..84aa67b 100644 --- a/src/world/hud.c +++ b/src/world/hud.c @@ -223,7 +223,7 @@ void drawMissionStatus(void) for (o = world.objectiveHead.next ; o != NULL ; o = o->next) { - c = colors.white; + c = o->required ? colors.red : colors.white; status = _("Incomplete"); if (o->currentValue == o->targetValue)