Skip to content

Commit

Permalink
Translation string fix, thanks [Unknown]
Browse files Browse the repository at this point in the history
  • Loading branch information
hrydgard committed Oct 8, 2023
1 parent 89e846d commit bc4f6a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Core/RetroAchievements.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ static void event_handler_callback(const rc_client_event_t *event, rc_client_t *
rc_client_user_game_summary_t summary;
rc_client_get_user_game_summary(g_rcClient, &summary);

std::string message = ApplySafeSubstitutions(ac->T("%d achievements, %d points"), summary.num_unlocked_achievements, summary.points_unlocked);
std::string message = ApplySafeSubstitutions(ac->T("%1 achievements, %2 points"), summary.num_unlocked_achievements, summary.points_unlocked);

g_OSD.Show(OSDType::MESSAGE_INFO, title, message, DeNull(gameInfo->badge_name), 10.0f);

Expand Down

0 comments on commit bc4f6a8

Please sign in to comment.