Achievements: Raise leaderboard fetch size to 15/50

Was loading too often otherwise.
This commit is contained in:
Stenzek
2026-01-16 00:39:30 +10:00
parent a108fcf2b2
commit f222c5012a

View File

@@ -32,8 +32,8 @@ static constexpr const char* PROFILE_DETAILS_URL_TEMPLATE = "https://retroachiev
static constexpr float WINDOW_ALPHA = 0.9f;
static constexpr float WINDOW_HEADING_ALPHA = 0.95f;
static constexpr u32 LEADERBOARD_NEARBY_ENTRIES_TO_FETCH = 10;
static constexpr u32 LEADERBOARD_ALL_FETCH_SIZE = 20;
static constexpr u32 LEADERBOARD_NEARBY_ENTRIES_TO_FETCH = 20;
static constexpr u32 LEADERBOARD_ALL_FETCH_SIZE = 50;
// How long the last progress update is shown in the pause menu.
static constexpr float PAUSE_MENU_PROGRESS_DISPLAY_TIME = 60.0f;