diff options
author | Hexagon12 <Hexagon12@users.noreply.github.com> | 2018-04-10 19:00:36 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-10 19:00:36 +0200 |
commit | 7788178f015898dedae0c9d6575db2aa5df9457d (patch) | |
tree | 4872bdff33a9ae29c6455578668e06ec34b27f0a /src/core/hle | |
parent | Updated fsp-srv with more service names. (diff) | |
download | yuzu-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')
-rw-r--r-- | src/core/hle/service/friend/friend_a.cpp | 3 |
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); } |