aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/friend/interface.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2019-07-02 23:32:57 -0400
committerGitHub <noreply@github.com>2019-07-02 23:32:57 -0400
commit58032e0085af7fa15e0cf3ac3ee151794cd053c0 (patch)
treec748e579d8eeb0218ae1edf10f1ef6ab250d10e9 /src/core/hle/service/friend/interface.cpp
parent2521007c09876699d9433ab0bf791932d45e768a (diff)
parentdfe4b3f7238af2d91327a956d3a52f299ee7d26f (diff)
Merge pull request #2604 from ogniK5377/INotificationService
Implemented INotificationService
Diffstat (limited to 'src/core/hle/service/friend/interface.cpp')
-rw-r--r--src/core/hle/service/friend/interface.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/friend/interface.cpp b/src/core/hle/service/friend/interface.cpp
index 5a6840af5..5b384f733 100644
--- a/src/core/hle/service/friend/interface.cpp
+++ b/src/core/hle/service/friend/interface.cpp
@@ -10,7 +10,7 @@ Friend::Friend(std::shared_ptr<Module> module, const char* name)
: Interface(std::move(module), name) {
static const FunctionInfo functions[] = {
{0, &Friend::CreateFriendService, "CreateFriendService"},
- {1, nullptr, "CreateNotificationService"},
+ {1, &Friend::CreateNotificationService, "CreateNotificationService"},
{2, nullptr, "CreateDaemonSuspendSessionService"},
};
RegisterHandlers(functions);