DolphinQt/AchievementHeaderWidget: Fix wrong label for hard unlock count.

This commit is contained in:
Admiral H. Curtiss 2023-10-15 18:38:18 +02:00
parent 2677fd9a8e
commit 923fc00777
No known key found for this signature in database
GPG Key ID: F051B4C4044F33FB

View File

@ -139,7 +139,7 @@ void AchievementHeaderWidget::UpdateData()
m_game_progress_hard->setRange(0, point_spread.total_count);
if (!m_game_progress_hard->isVisible())
m_game_progress_hard->setVisible(true);
m_game_progress_soft->setValue(point_spread.hard_unlocks);
m_game_progress_hard->setValue(point_spread.hard_unlocks);
m_game_progress_soft->setRange(0, point_spread.total_count);
m_game_progress_soft->setValue(point_spread.hard_unlocks + point_spread.soft_unlocks);
if (!m_game_progress_soft->isVisible())