Compare commits

..

2 Commits

Author SHA1 Message Date
Nicolas Gnyra ac5ad00674 Merge branch 'upload-score-sort-method' into 'master'
Check `sort_method` when comparing scores in `UploadLeaderboardScore`

See merge request Mr_Goldberg/goldberg_emulator!52
2023-09-26 03:41:56 +00:00
Nicolas Gnyra 6647317b88 Use `sort_method` when comparing scores in `UploadLeaderboardScore` 2023-09-25 23:10:04 -04:00
1 changed files with 1 additions and 3 deletions

View File

@ -18,13 +18,12 @@
#ifndef __INCLUDED_STEAM_USER_STATS_H__
#define __INCLUDED_STEAM_USER_STATS_H__
#include <limits>
#include "base.h"
#include "../overlay_experimental/steam_overlay.h"
struct Steam_Leaderboard_Score {
CSteamID steam_id;
int32 score;
int32 score = 0;
std::vector<int32> score_details;
};
@ -832,7 +831,6 @@ SteamAPICall_t FindOrCreateLeaderboard( const char *pchLeaderboardName, ELeaderb
leaderboard.name = std::string(pchLeaderboardName);
leaderboard.sort_method = eLeaderboardSortMethod;
leaderboard.display_type = eLeaderboardDisplayType;
leaderboard.self_score.score = eLeaderboardSortMethod == k_ELeaderboardSortMethodAscending ? INT_MAX : INT_MIN;
std::vector<Steam_Leaderboard_Score> scores = load_leaderboard_scores(pchLeaderboardName);
for (auto &s : scores) {