Show time on HUD when in challenge mission.

This commit is contained in:
Steve 2016-02-27 16:15:30 +00:00
parent 69e45f4e3f
commit 4df206d6b2
1 changed files with 1 additions and 1 deletions

View File

@ -400,7 +400,7 @@ static void drawObjectives(void)
}
else
{
drawText(SCREEN_WIDTH / 2, 10, 16, TA_CENTER, colors.white, "%d", battle.stats[STAT_TIME] / FPS);
drawText(SCREEN_WIDTH / 2, 10, 16, TA_CENTER, colors.white, "%d.%02d", battle.stats[STAT_TIME] / FPS, battle.stats[STAT_TIME] % 100);
}
}