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

Updated friend:a with more service names.

Hexagon12 8 лет назад
Родитель
Сommit
7788178f01
1 измененных файлов с 2 добавлено и 1 удалено
  1. 2 1
      src/core/hle/service/friend/friend_a.cpp

+ 2 - 1
src/core/hle/service/friend/friend_a.cpp

@@ -10,7 +10,8 @@ namespace Friend {
 Friend_A::Friend_A(std::shared_ptr<Module> module)
     : Module::Interface(std::move(module), "friend:a") {
     static const FunctionInfo functions[] = {
-        {0, &Friend_A::Unknown, "Unknown"},
+        {0, &Friend_A::CreateFriendService, "CreateFriendService"},
+        {1, nullptr, "CreateNotificationService"},
     };
     RegisterHandlers(functions);
 }