From e6d12aa7ac28ee2ef83b7b425836dbdbf52ac7d4 Mon Sep 17 00:00:00 2001 From: daisymlleung <151548046+daisymlleung@users.noreply.github.com> Date: Tue, 21 Nov 2023 01:46:37 +0800 Subject: [PATCH] Address review comment #2 --- src/core/hle/service/friend/friend.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/hle/service/friend/friend.cpp b/src/core/hle/service/friend/friend.cpp index c07f225560..0507b14e78 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::CheckBlockedUserListCacheAvailable, "CheckBlockedUserListCacheAvailable"}, + {10420, &IFriendService::CheckBlockedUserListAvailability, "CheckBlockedUserListAvailability"}, {10421, nullptr, "EnsureBlockedUserListAvailable"}, {10500, nullptr, "GetProfileList"}, {10600, nullptr, "DeclareOpenOnlinePlaySession"}, @@ -206,7 +206,7 @@ private: rb.Push(true); } - void CheckBlockedUserListCacheAvailable(HLERequestContext& ctx) { + void CheckBlockedUserListAvailability(HLERequestContext& ctx) { IPC::RequestParser rp{ctx}; const auto uuid{rp.PopRaw()};