Don't show current / target numbers for conditions.

This commit is contained in:
Steve 2015-11-13 16:56:53 +00:00
parent ddf5a3106f
commit 92ca28bf3c
1 changed files with 1 additions and 1 deletions

View File

@ -108,7 +108,7 @@ static void drawMissionSummary(SDL_Texture *header)
}
drawText(SCREEN_WIDTH / 2 - 100, y, 22, TA_RIGHT, colors.white, o->description);
if (o->targetValue > 1)
if (o->targetValue > 1 && !o->isCondition)
{
drawText(SCREEN_WIDTH / 2, y, 22, TA_CENTER, colors.white, "%d / %d", o->currentValue, o->targetValue);
}