Address review comment

This commit is contained in:
daisymlleung 2023-11-21 01:44:30 +08:00 committed by GitHub
parent b62ef666e3
commit 908a9be431
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -32,7 +32,7 @@ public:
{10200, nullptr, "SendFriendRequestForApplication"},
{10211, nullptr, "AddFacedFriendRequestForApplication"},
{10400, &IFriendService::GetBlockedUserListIds, "GetBlockedUserListIds"},
{10420, &IFriendService::IsBlockedUserListCacheAvailable, "IsBlockedUserListCacheAvailable"},
{10420, &IFriendService::CheckBlockedUserListCacheAvailable, "CheckBlockedUserListCacheAvailable"},
{10421, nullptr, "EnsureBlockedUserListAvailable"},
{10500, nullptr, "GetProfileList"},
{10600, nullptr, "DeclareOpenOnlinePlaySession"},
@ -206,8 +206,7 @@ private:
rb.Push(true);
}
void IsBlockedUserListCacheAvailable(HLERequestContext& ctx) {
// Stub used by Super Bomberman R2
void CheckBlockedUserListCacheAvailable(HLERequestContext& ctx) {
IPC::RequestParser rp{ctx};
const auto uuid{rp.PopRaw<Common::UUID>()};