summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/friend/friend_a.cpp
diff options
context:
space:
mode:
authorHexagon12 <Hexagon12@users.noreply.github.com>2018-04-10 19:00:36 +0200
committerGitHub <noreply@github.com>2018-04-10 19:00:36 +0200
commit7788178f015898dedae0c9d6575db2aa5df9457d (patch)
tree4872bdff33a9ae29c6455578668e06ec34b27f0a /src/core/hle/service/friend/friend_a.cpp
parentUpdated fsp-srv with more service names. (diff)
downloadyuzu-7788178f015898dedae0c9d6575db2aa5df9457d.tar
yuzu-7788178f015898dedae0c9d6575db2aa5df9457d.tar.gz
yuzu-7788178f015898dedae0c9d6575db2aa5df9457d.tar.bz2
yuzu-7788178f015898dedae0c9d6575db2aa5df9457d.tar.lz
yuzu-7788178f015898dedae0c9d6575db2aa5df9457d.tar.xz
yuzu-7788178f015898dedae0c9d6575db2aa5df9457d.tar.zst
yuzu-7788178f015898dedae0c9d6575db2aa5df9457d.zip
Diffstat (limited to 'src/core/hle/service/friend/friend_a.cpp')
-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);
}