Achievements: Fix progression overlay stacking

This commit is contained in:
KamFretoZ 2024-12-03 12:18:12 +07:00 committed by lightningterror
parent 5bf3166832
commit a024c25019
1 changed files with 2 additions and 2 deletions

View File

@ -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())
@ -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;
}
}