diff options
author | Lioncash <mathew1800@gmail.com> | 2022-01-21 22:08:46 +0100 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2022-01-21 22:08:46 +0100 |
commit | 888bc10c173e02e7315cb8fa8e673a7d8755fd78 (patch) | |
tree | b2ca6fb11ea4599dadd2b9bc81a87f97ba65a65f /src/core/hle | |
parent | service/filsystem: Update fsp-srv function table (diff) | |
download | yuzu-888bc10c173e02e7315cb8fa8e673a7d8755fd78.tar yuzu-888bc10c173e02e7315cb8fa8e673a7d8755fd78.tar.gz yuzu-888bc10c173e02e7315cb8fa8e673a7d8755fd78.tar.bz2 yuzu-888bc10c173e02e7315cb8fa8e673a7d8755fd78.tar.lz yuzu-888bc10c173e02e7315cb8fa8e673a7d8755fd78.tar.xz yuzu-888bc10c173e02e7315cb8fa8e673a7d8755fd78.tar.zst yuzu-888bc10c173e02e7315cb8fa8e673a7d8755fd78.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/hle/service/friend/friend.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/core/hle/service/friend/friend.cpp b/src/core/hle/service/friend/friend.cpp index 3c36f4085..9f9cea1e0 100644 --- a/src/core/hle/service/friend/friend.cpp +++ b/src/core/hle/service/friend/friend.cpp @@ -27,13 +27,13 @@ public: {10101, &IFriendService::GetFriendList, "GetFriendList"}, {10102, nullptr, "UpdateFriendInfo"}, {10110, nullptr, "GetFriendProfileImage"}, - {10120, nullptr, "Unknown10120"}, - {10121, nullptr, "Unknown10121"}, + {10120, nullptr, "IsFriendListCacheAvailable"}, + {10121, nullptr, "EnsureFriendListAvailable"}, {10200, nullptr, "SendFriendRequestForApplication"}, {10211, nullptr, "AddFacedFriendRequestForApplication"}, {10400, &IFriendService::GetBlockedUserListIds, "GetBlockedUserListIds"}, - {10420, nullptr, "Unknown10420"}, - {10421, nullptr, "Unknown10421"}, + {10420, nullptr, "IsBlockedUserListCacheAvailable"}, + {10421, nullptr, "EnsureBlockedUserListAvailable"}, {10500, nullptr, "GetProfileList"}, {10600, nullptr, "DeclareOpenOnlinePlaySession"}, {10601, &IFriendService::DeclareCloseOnlinePlaySession, "DeclareCloseOnlinePlaySession"}, @@ -103,8 +103,8 @@ public: {30900, nullptr, "SendFriendInvitation"}, {30910, nullptr, "ReadFriendInvitation"}, {30911, nullptr, "ReadAllFriendInvitations"}, - {40100, nullptr, "Unknown40100"}, - {40400, nullptr, "Unknown40400"}, + {40100, nullptr, "DeleteFriendListCache"}, + {40400, nullptr, "DeleteBlockedUserListCache"}, {49900, nullptr, "DeleteNetworkServiceAccountCache"}, }; // clang-format on |