From 908a9be431c6fc937586bc3e4727a9ee3a1fe692 Mon Sep 17 00:00:00 2001 From: daisymlleung <151548046+daisymlleung@users.noreply.github.com> Date: Tue, 21 Nov 2023 01:44:30 +0800 Subject: [PATCH] Address review comment --- src/core/hle/service/friend/friend.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/core/hle/service/friend/friend.cpp b/src/core/hle/service/friend/friend.cpp index 668b8005ec..c07f225560 100644 --- a/src/core/hle/service/friend/friend.cpp +++ b/src/core/hle/service/friend/friend.cpp @@ -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()};