Skip to content

Commit 9b99d99

Browse files
committed
Achievements: Fix display of game completion date
1 parent b75be05 commit 9b99d99

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/achievements.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2868,7 +2868,7 @@ void Achievements::DrawAchievementsWindow()
28682868
else
28692869
{
28702870
const std::string completion_time =
2871-
Host::FormatNumber(Host::NumberFormatType::ShortDate, static_cast<s64>(s_state.game_summary.beaten_time));
2871+
Host::FormatNumber(Host::NumberFormatType::ShortDate, static_cast<s64>(s_state.game_summary.completed_time));
28722872
text.format(TRANSLATE_FS("Achievements", "Game was completed on {0}."), completion_time);
28732873
}
28742874

0 commit comments

Comments
 (0)