summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorHexagon12 <Hexagon12@users.noreply.github.com>2018-04-10 20:00:36 +0300
committerGitHub <noreply@github.com>2018-04-10 20:00:36 +0300
commit7788178f015898dedae0c9d6575db2aa5df9457d (patch)
tree4872bdff33a9ae29c6455578668e06ec34b27f0a /src
parentae5e2d07c61bd06e7ef35132739c5a0dddda36d8 (diff)
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 {
Friend_A::Friend_A(std::shared_ptr<Module> module)
: Module::Interface(std::move(module), "friend:a") {
static const FunctionInfo functions[] = {
- {0, &Friend_A::Unknown, "Unknown"},
+ {0, &Friend_A::CreateFriendService, "CreateFriendService"},
+ {1, nullptr, "CreateNotificationService"},
};
RegisterHandlers(functions);
}