From 8e6727e2b59362b036e38d9708c65bb73c7322af Mon Sep 17 00:00:00 2001 From: Steve Date: Fri, 12 Aug 2016 08:56:59 +0100 Subject: [PATCH] Only show Campaign Complete message once. --- src/galaxy/galacticMap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/galaxy/galacticMap.c b/src/galaxy/galacticMap.c index ee370d0..912c6f7 100644 --- a/src/galaxy/galacticMap.c +++ b/src/galaxy/galacticMap.c @@ -152,7 +152,7 @@ static void updateCampaignProgress(void) { StarSystem *starSystem; - if (game.completedMissions == game.totalMissions) + if (!campaignComplete && game.completedMissions == game.totalMissions) { for (starSystem = game.starSystemHead.next ; starSystem != NULL ; starSystem = starSystem->next) {