diff --git a/Source/Core/Core/AchievementManager.h b/Source/Core/Core/AchievementManager.h index ea7a8bae5e..3c09a87d1b 100644 --- a/Source/Core/Core/AchievementManager.h +++ b/Source/Core/Core/AchievementManager.h @@ -307,6 +307,8 @@ private: #include +#include "Common/CommonTypes.h" + namespace ActionReplay { struct ARCode; @@ -333,12 +335,14 @@ public: constexpr bool IsHardcoreModeActive() { return false; } - constexpr bool CheckApprovedGeckoCode(const Gecko::GeckoCode& code, const std::string& game_id) + constexpr bool CheckApprovedGeckoCode(const Gecko::GeckoCode& code, const std::string& game_id, + u16 revision) { return true; }; - constexpr bool CheckApprovedARCode(const ActionReplay::ARCode& code, const std::string& game_id) + constexpr bool CheckApprovedARCode(const ActionReplay::ARCode& code, const std::string& game_id, + u16 revision) { return true; };