mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 22:00:39 -06:00
Merge pull request #12929 from LillyJadeKatrin/retroachievements-leaderboard-fixes
Fix Leaderboards Tab
This commit is contained in:
@ -87,7 +87,7 @@ void AchievementLeaderboardWidget::UpdateData(bool clean_all)
|
||||
}
|
||||
for (auto row : m_leaderboard_order)
|
||||
{
|
||||
UpdateRow(row.second);
|
||||
UpdateRow(row.first);
|
||||
}
|
||||
}
|
||||
|
||||
@ -98,7 +98,7 @@ void AchievementLeaderboardWidget::UpdateData(
|
||||
{
|
||||
if (update_ids.contains(row.first))
|
||||
{
|
||||
UpdateRow(row.second);
|
||||
UpdateRow(row.first);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user