summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar german772021-11-04 10:10:58 -0600
committerGravatar german772021-11-04 10:10:58 -0600
commitbee6b71553c6ed1f25e0fab682cd7de2706ca75e (patch)
tree2ddcf51024c707eec1705baff1599afcc0be2b50
parentMerge pull request #7283 from Morph1984/stub-160 (diff)
downloadyuzu-bee6b71553c6ed1f25e0fab682cd7de2706ca75e.tar.gz
yuzu-bee6b71553c6ed1f25e0fab682cd7de2706ca75e.tar.xz
yuzu-bee6b71553c6ed1f25e0fab682cd7de2706ca75e.zip
service/acc: Rename Unknown160 to InitializeApplicationInfoV2
-rw-r--r--src/core/hle/service/acc/acc.cpp2
-rw-r--r--src/core/hle/service/acc/acc.h2
-rw-r--r--src/core/hle/service/acc/acc_u0.cpp2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/core/hle/service/acc/acc.cpp b/src/core/hle/service/acc/acc.cpp
index 0b6097d95..e1d01e5b4 100644
--- a/src/core/hle/service/acc/acc.cpp
+++ b/src/core/hle/service/acc/acc.cpp
@@ -826,7 +826,7 @@ void Module::Interface::IsUserAccountSwitchLocked(Kernel::HLERequestContext& ctx
826 rb.Push(is_locked); 826 rb.Push(is_locked);
827} 827}
828 828
829void Module::Interface::Unknown160(Kernel::HLERequestContext& ctx) { 829void Module::Interface::InitializeApplicationInfoV2(Kernel::HLERequestContext& ctx) {
830 LOG_WARNING(Service_ACC, "(STUBBED) called"); 830 LOG_WARNING(Service_ACC, "(STUBBED) called");
831 831
832 IPC::ResponseBuilder rb{ctx, 2}; 832 IPC::ResponseBuilder rb{ctx, 2};
diff --git a/src/core/hle/service/acc/acc.h b/src/core/hle/service/acc/acc.h
index 7e8fcf2af..f7e9bc4f8 100644
--- a/src/core/hle/service/acc/acc.h
+++ b/src/core/hle/service/acc/acc.h
@@ -33,7 +33,7 @@ public:
33 void IsUserRegistrationRequestPermitted(Kernel::HLERequestContext& ctx); 33 void IsUserRegistrationRequestPermitted(Kernel::HLERequestContext& ctx);
34 void TrySelectUserWithoutInteraction(Kernel::HLERequestContext& ctx); 34 void TrySelectUserWithoutInteraction(Kernel::HLERequestContext& ctx);
35 void IsUserAccountSwitchLocked(Kernel::HLERequestContext& ctx); 35 void IsUserAccountSwitchLocked(Kernel::HLERequestContext& ctx);
36 void Unknown160(Kernel::HLERequestContext& ctx); 36 void InitializeApplicationInfoV2(Kernel::HLERequestContext& ctx);
37 void GetProfileEditor(Kernel::HLERequestContext& ctx); 37 void GetProfileEditor(Kernel::HLERequestContext& ctx);
38 void ListQualifiedUsers(Kernel::HLERequestContext& ctx); 38 void ListQualifiedUsers(Kernel::HLERequestContext& ctx);
39 void LoadOpenContext(Kernel::HLERequestContext& ctx); 39 void LoadOpenContext(Kernel::HLERequestContext& ctx);
diff --git a/src/core/hle/service/acc/acc_u0.cpp b/src/core/hle/service/acc/acc_u0.cpp
index f7b19f595..df77c58f0 100644
--- a/src/core/hle/service/acc/acc_u0.cpp
+++ b/src/core/hle/service/acc/acc_u0.cpp
@@ -34,7 +34,7 @@ ACC_U0::ACC_U0(std::shared_ptr<Module> module_, std::shared_ptr<ProfileManager>
34 {140, &ACC_U0::InitializeApplicationInfoRestricted, "InitializeApplicationInfoRestricted"}, // 6.0.0+ 34 {140, &ACC_U0::InitializeApplicationInfoRestricted, "InitializeApplicationInfoRestricted"}, // 6.0.0+
35 {141, &ACC_U0::ListQualifiedUsers, "ListQualifiedUsers"}, // 6.0.0+ 35 {141, &ACC_U0::ListQualifiedUsers, "ListQualifiedUsers"}, // 6.0.0+
36 {150, &ACC_U0::IsUserAccountSwitchLocked, "IsUserAccountSwitchLocked"}, // 6.0.0+ 36 {150, &ACC_U0::IsUserAccountSwitchLocked, "IsUserAccountSwitchLocked"}, // 6.0.0+
37 {160, &ACC_U0::Unknown160, "Unknown160"}, 37 {160, &ACC_U0::InitializeApplicationInfoV2, "InitializeApplicationInfoV2"},
38 }; 38 };
39 // clang-format on 39 // clang-format on
40 40