Skip to content

Commit

Permalink
Achievements: Fix progression overlay stacking
Browse files Browse the repository at this point in the history
  • Loading branch information
kamfretoz committed Dec 3, 2024
1 parent 2c02550 commit 9ec13e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pcsx2/Achievements.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2008,7 +2008,7 @@ void Achievements::DrawGameOverlays()
s_active_progress_indicator.reset();
}

position.y -= image_size.y - padding * 3.0f;
position.y -= image_size.y + padding * 3.0f;
}

if (!s_active_leaderboard_trackers.empty())
Expand Down Expand Up @@ -2058,7 +2058,7 @@ void Achievements::DrawGameOverlays()
}

// Uncomment if there are any other overlays above this one.
//position.y -= image_size.y - padding * 3.0f;
//position.y -= image_size.y + padding * 3.0f;
}
}

Expand Down

0 comments on commit 9ec13e7

Please sign in to comment.