summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar bunnei2018-08-12 00:25:57 -0400
committerGravatar GitHub2018-08-12 00:25:57 -0400
commita70ad9b5bb79f4dcc3865e6d2da307b2da147547 (patch)
treec18cae2d71f418d29292ccabd526f29d0cae6b44 /src
parentMerge pull request #1027 from bunnei/fix-kil (diff)
parentStub UpdateUserPresence (diff)
downloadyuzu-a70ad9b5bb79f4dcc3865e6d2da307b2da147547.tar.gz
yuzu-a70ad9b5bb79f4dcc3865e6d2da307b2da147547.tar.xz
yuzu-a70ad9b5bb79f4dcc3865e6d2da307b2da147547.zip
Merge pull request #1026 from ogniK5377/retro-city-rampage
Stub UpdateUserPresence
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/service/friend/friend.cpp9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/core/hle/service/friend/friend.cpp b/src/core/hle/service/friend/friend.cpp
index 2b642c32f..f2b0e509a 100644
--- a/src/core/hle/service/friend/friend.cpp
+++ b/src/core/hle/service/friend/friend.cpp
@@ -26,7 +26,7 @@ public:
26 {10600, nullptr, "DeclareOpenOnlinePlaySession"}, 26 {10600, nullptr, "DeclareOpenOnlinePlaySession"},
27 {10601, &IFriendService::DeclareCloseOnlinePlaySession, 27 {10601, &IFriendService::DeclareCloseOnlinePlaySession,
28 "DeclareCloseOnlinePlaySession"}, 28 "DeclareCloseOnlinePlaySession"},
29 {10610, nullptr, "UpdateUserPresence"}, 29 {10610, &IFriendService::UpdateUserPresence, "UpdateUserPresence"},
30 {10700, nullptr, "GetPlayHistoryRegistrationKey"}, 30 {10700, nullptr, "GetPlayHistoryRegistrationKey"},
31 {10701, nullptr, "GetPlayHistoryRegistrationKeyWithNetworkServiceAccountId"}, 31 {10701, nullptr, "GetPlayHistoryRegistrationKeyWithNetworkServiceAccountId"},
32 {10702, nullptr, "AddPlayHistory"}, 32 {10702, nullptr, "AddPlayHistory"},
@@ -99,6 +99,13 @@ private:
99 IPC::ResponseBuilder rb{ctx, 2}; 99 IPC::ResponseBuilder rb{ctx, 2};
100 rb.Push(RESULT_SUCCESS); 100 rb.Push(RESULT_SUCCESS);
101 } 101 }
102
103 void UpdateUserPresence(Kernel::HLERequestContext& ctx) {
104 // Stub used by Retro City Rampage
105 LOG_WARNING(Service_ACC, "(STUBBED) called");
106 IPC::ResponseBuilder rb{ctx, 2};
107 rb.Push(RESULT_SUCCESS);
108 }
102}; 109};
103 110
104void Module::Interface::CreateFriendService(Kernel::HLERequestContext& ctx) { 111void Module::Interface::CreateFriendService(Kernel::HLERequestContext& ctx) {