mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-06 08:09:19 +00:00
Merge pull request #12237 from AdmiralCurtiss/hard-label
DolphinQt/AchievementHeaderWidget: Fix wrong label for hard unlock count.
This commit is contained in:
commit
aec5238aa6
1 changed files with 1 additions and 1 deletions
|
@ -139,7 +139,7 @@ void AchievementHeaderWidget::UpdateData()
|
||||||
m_game_progress_hard->setRange(0, point_spread.total_count);
|
m_game_progress_hard->setRange(0, point_spread.total_count);
|
||||||
if (!m_game_progress_hard->isVisible())
|
if (!m_game_progress_hard->isVisible())
|
||||||
m_game_progress_hard->setVisible(true);
|
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->setRange(0, point_spread.total_count);
|
||||||
m_game_progress_soft->setValue(point_spread.hard_unlocks + point_spread.soft_unlocks);
|
m_game_progress_soft->setValue(point_spread.hard_unlocks + point_spread.soft_unlocks);
|
||||||
if (!m_game_progress_soft->isVisible())
|
if (!m_game_progress_soft->isVisible())
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue