Pilots remaining should be inclusive on the one currently active.

This commit is contained in:
Steve 2016-08-29 10:35:28 +01:00
parent e59af4bfbc
commit eac108b7ac
1 changed files with 1 additions and 1 deletions

View File

@ -464,7 +464,7 @@ static void drawObjectives(void)
if (battle.isEpic && battle.epicLives > 0)
{
drawText(SCREEN_WIDTH / 2, 35, 14, TA_CENTER, colors.white, REMAINING_PILOTS_TEXT, battle.epicLives);
drawText(SCREEN_WIDTH / 2, 35, 14, TA_CENTER, colors.white, REMAINING_PILOTS_TEXT, battle.epicLives - 1);
}
}
else