Merge pull request #12897 from Dentomologist/achievementmanager_fix_ignored_qualifiers_warning
AchievementManager: Fix -Wignored-qualifiers warning
This commit is contained in:
commit
f49659fbfc
|
@ -341,7 +341,7 @@ AchievementManager::RichPresence AchievementManager::GetRichPresence() const
|
||||||
return m_rich_presence;
|
return m_rich_presence;
|
||||||
}
|
}
|
||||||
|
|
||||||
const bool AchievementManager::AreChallengesUpdated() const
|
bool AchievementManager::AreChallengesUpdated() const
|
||||||
{
|
{
|
||||||
return m_challenges_updated;
|
return m_challenges_updated;
|
||||||
}
|
}
|
||||||
|
|
|
@ -116,7 +116,7 @@ public:
|
||||||
const Badge& GetAchievementBadge(AchievementId id, bool locked) const;
|
const Badge& GetAchievementBadge(AchievementId id, bool locked) const;
|
||||||
const LeaderboardStatus* GetLeaderboardInfo(AchievementId leaderboard_id);
|
const LeaderboardStatus* GetLeaderboardInfo(AchievementId leaderboard_id);
|
||||||
RichPresence GetRichPresence() const;
|
RichPresence GetRichPresence() const;
|
||||||
const bool AreChallengesUpdated() const;
|
bool AreChallengesUpdated() const;
|
||||||
void ResetChallengesUpdated();
|
void ResetChallengesUpdated();
|
||||||
const std::unordered_set<AchievementId>& GetActiveChallenges() const;
|
const std::unordered_set<AchievementId>& GetActiveChallenges() const;
|
||||||
std::vector<std::string> GetActiveLeaderboards() const;
|
std::vector<std::string> GetActiveLeaderboards() const;
|
||||||
|
|
Loading…
Reference in New Issue