1
0
Fork 0
mirror of https://github.com/Detanup01/gbe_fork.git synced 2025-08-05 07:05:34 +02:00

Fixed Steam_User_Stats::GetDownloadedLeaderboardEntry

This commit is contained in:
NicknineTheEagle 2025-07-16 12:56:52 +03:00
parent f8c4dac250
commit 646dc7a5c4

View file

@ -491,6 +491,8 @@ bool Steam_User_Stats::GetDownloadedLeaderboardEntry( SteamLeaderboardEntries_t
entry.m_steamIDUser = target_entry.steam_id;
entry.m_nGlobalRank = 1 + (int)(&target_entry - &board.entries[0]);
entry.m_nScore = target_entry.score;
entry.m_cDetails = target_entry.score_details.size();
entry.m_hUGC = k_UGCHandleInvalid; // TODO
*pLeaderboardEntry = entry;
}