summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Lioncash2018-07-24 10:24:16 -0400
committerGravatar Lioncash2018-07-24 10:24:16 -0400
commit9539a1eaddc41ababeae25ab7d0922f708953639 (patch)
tree0478e31795c0e8dbfb2444ca81e98f808fefe9f6 /src
parentfriend: Deduplicate interfaces (diff)
downloadyuzu-9539a1eaddc41ababeae25ab7d0922f708953639.tar.gz
yuzu-9539a1eaddc41ababeae25ab7d0922f708953639.tar.xz
yuzu-9539a1eaddc41ababeae25ab7d0922f708953639.zip
friend/interface: Add missing CreateDaemonSuspendSessionService() to the function handler table
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/service/friend/interface.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/hle/service/friend/interface.cpp b/src/core/hle/service/friend/interface.cpp
index a43c58ec6..27c6a09e2 100644
--- a/src/core/hle/service/friend/interface.cpp
+++ b/src/core/hle/service/friend/interface.cpp
@@ -11,6 +11,7 @@ Friend::Friend(std::shared_ptr<Module> module, const char* name)
11 static const FunctionInfo functions[] = { 11 static const FunctionInfo functions[] = {
12 {0, &Friend::CreateFriendService, "CreateFriendService"}, 12 {0, &Friend::CreateFriendService, "CreateFriendService"},
13 {1, nullptr, "CreateNotificationService"}, 13 {1, nullptr, "CreateNotificationService"},
14 {2, nullptr, "CreateDaemonSuspendSessionService"},
14 }; 15 };
15 RegisterHandlers(functions); 16 RegisterHandlers(functions);
16} 17}