Achievements: Display hardcore disabled subtitle in game summary
This commit is contained in:
parent
284b13cd43
commit
e7a3465598
|
@ -1455,12 +1455,16 @@ void Achievements::DisplayAchievementSummary()
|
|||
s_state.game_summary.points_core),
|
||||
s_state.game_summary.points_unlocked));
|
||||
|
||||
summary.append('\n');
|
||||
if (IsHardcoreModeActive())
|
||||
{
|
||||
summary.append('\n');
|
||||
summary.append(
|
||||
TRANSLATE_SV("Achievements", "Hardcore mode is enabled. Cheats and save states are unavailable."));
|
||||
}
|
||||
else
|
||||
{
|
||||
summary.append(TRANSLATE_SV("Achievements", "Hardcore mode is disabled. Leaderboards will not be tracked."));
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue