Explorar el Código

Updated friend:a with more service names.

Hexagon12 hace 8 años
padre
commit
7788178f01
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  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)
 Friend_A::Friend_A(std::shared_ptr<Module> module)
     : Module::Interface(std::move(module), "friend:a") {
     : Module::Interface(std::move(module), "friend:a") {
     static const FunctionInfo functions[] = {
     static const FunctionInfo functions[] = {
-        {0, &Friend_A::Unknown, "Unknown"},
+        {0, &Friend_A::CreateFriendService, "CreateFriendService"},
+        {1, nullptr, "CreateNotificationService"},
     };
     };
     RegisterHandlers(functions);
     RegisterHandlers(functions);
 }
 }