summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Hexagon122018-04-10 20:00:36 +0300
committerGravatar GitHub2018-04-10 20:00:36 +0300
commit7788178f015898dedae0c9d6575db2aa5df9457d (patch)
tree4872bdff33a9ae29c6455578668e06ec34b27f0a /src
parentUpdated fsp-srv with more service names. (diff)
downloadyuzu-7788178f015898dedae0c9d6575db2aa5df9457d.tar.gz
yuzu-7788178f015898dedae0c9d6575db2aa5df9457d.tar.xz
yuzu-7788178f015898dedae0c9d6575db2aa5df9457d.zip
Updated friend:a with more service names.
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/service/friend/friend_a.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/hle/service/friend/friend_a.cpp b/src/core/hle/service/friend/friend_a.cpp
index e1f2397c2..d64fe846a 100644
--- a/src/core/hle/service/friend/friend_a.cpp
+++ b/src/core/hle/service/friend/friend_a.cpp
@@ -10,7 +10,8 @@ namespace Friend {
10Friend_A::Friend_A(std::shared_ptr<Module> module) 10Friend_A::Friend_A(std::shared_ptr<Module> module)
11 : Module::Interface(std::move(module), "friend:a") { 11 : Module::Interface(std::move(module), "friend:a") {
12 static const FunctionInfo functions[] = { 12 static const FunctionInfo functions[] = {
13 {0, &Friend_A::Unknown, "Unknown"}, 13 {0, &Friend_A::CreateFriendService, "CreateFriendService"},
14 {1, nullptr, "CreateNotificationService"},
14 }; 15 };
15 RegisterHandlers(functions); 16 RegisterHandlers(functions);
16} 17}