소스 검색

friend/interface: Add missing CreateDaemonSuspendSessionService() to the function handler table

Lioncash 8 년 전
부모
커밋
9539a1eadd
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      src/core/hle/service/friend/interface.cpp

+ 1 - 0
src/core/hle/service/friend/interface.cpp

@@ -11,6 +11,7 @@ Friend::Friend(std::shared_ptr<Module> module, const char* name)
     static const FunctionInfo functions[] = {
         {0, &Friend::CreateFriendService, "CreateFriendService"},
         {1, nullptr, "CreateNotificationService"},
+        {2, nullptr, "CreateDaemonSuspendSessionService"},
     };
     RegisterHandlers(functions);
 }