summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service
diff options
context:
space:
mode:
authorHexagon12 <Hexagon12@users.noreply.github.com>2018-04-10 19:02:11 +0200
committerGitHub <noreply@github.com>2018-04-10 19:02:11 +0200
commit9e2f30ab4af7d05b5679d61b96a93d7939237cd5 (patch)
treecc1dac83ff7800d962f132de10a56c6ef623a087 /src/core/hle/service
parentUpdated the unknown name (diff)
downloadyuzu-9e2f30ab4af7d05b5679d61b96a93d7939237cd5.tar
yuzu-9e2f30ab4af7d05b5679d61b96a93d7939237cd5.tar.gz
yuzu-9e2f30ab4af7d05b5679d61b96a93d7939237cd5.tar.bz2
yuzu-9e2f30ab4af7d05b5679d61b96a93d7939237cd5.tar.lz
yuzu-9e2f30ab4af7d05b5679d61b96a93d7939237cd5.tar.xz
yuzu-9e2f30ab4af7d05b5679d61b96a93d7939237cd5.tar.zst
yuzu-9e2f30ab4af7d05b5679d61b96a93d7939237cd5.zip
Diffstat (limited to 'src/core/hle/service')
-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 {
Friend_U::Friend_U(std::shared_ptr<Module> module)
: Module::Interface(std::move(module), "friend:u") {
static const FunctionInfo functions[] = {
- {0, &Friend_U::Unknown, "Unknown"},
+ {0, &Friend_U::CreateFriendService, "CreateFriendService"},
+ {1, nullptr, "CreateNotificationService"},
};
RegisterHandlers(functions);
}