Skip to content

Commit

Permalink
Merge pull request #12897 from Dentomologist/achievementmanager_fix_i…
Browse files Browse the repository at this point in the history
…gnored_qualifiers_warning

AchievementManager: Fix -Wignored-qualifiers warning
  • Loading branch information
OatmealDome committed Jun 28, 2024
2 parents 233ea58 + c46c010 commit f49659f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Source/Core/Core/AchievementManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ AchievementManager::RichPresence AchievementManager::GetRichPresence() const
return m_rich_presence;
}

const bool AchievementManager::AreChallengesUpdated() const
bool AchievementManager::AreChallengesUpdated() const
{
return m_challenges_updated;
}
Expand Down
2 changes: 1 addition & 1 deletion Source/Core/Core/AchievementManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ class AchievementManager
const Badge& GetAchievementBadge(AchievementId id, bool locked) const;
const LeaderboardStatus* GetLeaderboardInfo(AchievementId leaderboard_id);
RichPresence GetRichPresence() const;
const bool AreChallengesUpdated() const;
bool AreChallengesUpdated() const;
void ResetChallengesUpdated();
const std::unordered_set<AchievementId>& GetActiveChallenges() const;
std::vector<std::string> GetActiveLeaderboards() const;
Expand Down

0 comments on commit f49659f

Please sign in to comment.