summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Hexagon122018-04-10 20:02:11 +0300
committerGravatar GitHub2018-04-10 20:02:11 +0300
commit9e2f30ab4af7d05b5679d61b96a93d7939237cd5 (patch)
treecc1dac83ff7800d962f132de10a56c6ef623a087 /src
parentUpdated the unknown name (diff)
downloadyuzu-9e2f30ab4af7d05b5679d61b96a93d7939237cd5.tar.gz
yuzu-9e2f30ab4af7d05b5679d61b96a93d7939237cd5.tar.xz
yuzu-9e2f30ab4af7d05b5679d61b96a93d7939237cd5.zip
Updated friend:u with more service names.
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/service/friend/friend_u.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/hle/service/friend/friend_u.cpp b/src/core/hle/service/friend/friend_u.cpp
index 084388e5f..9a4b05b38 100644
--- a/src/core/hle/service/friend/friend_u.cpp
+++ b/src/core/hle/service/friend/friend_u.cpp
@@ -10,7 +10,8 @@ namespace Friend {
10Friend_U::Friend_U(std::shared_ptr<Module> module) 10Friend_U::Friend_U(std::shared_ptr<Module> module)
11 : Module::Interface(std::move(module), "friend:u") { 11 : Module::Interface(std::move(module), "friend:u") {
12 static const FunctionInfo functions[] = { 12 static const FunctionInfo functions[] = {
13 {0, &Friend_U::Unknown, "Unknown"}, 13 {0, &Friend_U::CreateFriendService, "CreateFriendService"},
14 {1, nullptr, "CreateNotificationService"},
14 }; 15 };
15 RegisterHandlers(functions); 16 RegisterHandlers(functions);
16} 17}