Просмотр исходного кода

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

Lioncash 8 лет назад
Родитель
Сommit
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);
 }