mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2025-01-09 10:29:45 +01:00
Add check for singular trinkets and crewmates in NDM game over screen
This commit is contained in:
parent
6c04f56099
commit
e2321f84b9
1 changed files with 2 additions and 2 deletions
|
@ -675,10 +675,10 @@ void menurender()
|
|||
graphics.drawcrewman(169-(3*42)+(i*42), 68, i, game.crewstats[i], true);
|
||||
}
|
||||
std::string tempstring;
|
||||
tempstring = "You rescued " + help.number(game.crewrescued()) + " crewmates";
|
||||
tempstring = "You rescued " + help.number(game.crewrescued()) + (game.crewrescued() == 1 ? " crewmate" : " crewmates");
|
||||
graphics.Print(0, 100, tempstring, tr, tg, tb, true);
|
||||
|
||||
tempstring = "and found " + help.number(game.trinkets()) + " trinkets.";
|
||||
tempstring = "and found " + help.number(game.trinkets()) + (game.trinkets() == 1 ? " trinket." : " trinkets.");
|
||||
graphics.Print(0, 110, tempstring, tr, tg, tb, true);
|
||||
|
||||
tempstring = "You managed to reach:";
|
||||
|
|
Loading…
Reference in a new issue