summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/acc/acc_su.cpp
diff options
context:
space:
mode:
authorNarr the Reg <juangerman-13@hotmail.com>2023-10-17 05:12:55 +0200
committerGitHub <noreply@github.com>2023-10-17 05:12:55 +0200
commitbcce184e60a0adeac287e38ebdd2af078cd91423 (patch)
tree5a6ea3d1580b1c48046cc4213d984c928bdaadd1 /src/core/hle/service/acc/acc_su.cpp
parentMerge pull request #11786 from v1993/cuda-on-linux (diff)
downloadyuzu-bcce184e60a0adeac287e38ebdd2af078cd91423.tar
yuzu-bcce184e60a0adeac287e38ebdd2af078cd91423.tar.gz
yuzu-bcce184e60a0adeac287e38ebdd2af078cd91423.tar.bz2
yuzu-bcce184e60a0adeac287e38ebdd2af078cd91423.tar.lz
yuzu-bcce184e60a0adeac287e38ebdd2af078cd91423.tar.xz
yuzu-bcce184e60a0adeac287e38ebdd2af078cd91423.tar.zst
yuzu-bcce184e60a0adeac287e38ebdd2af078cd91423.zip
Diffstat (limited to 'src/core/hle/service/acc/acc_su.cpp')
-rw-r--r--src/core/hle/service/acc/acc_su.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/hle/service/acc/acc_su.cpp b/src/core/hle/service/acc/acc_su.cpp
index d9882ecd3..770d13ec5 100644
--- a/src/core/hle/service/acc/acc_su.cpp
+++ b/src/core/hle/service/acc/acc_su.cpp
@@ -23,7 +23,7 @@ ACC_SU::ACC_SU(std::shared_ptr<Module> module_, std::shared_ptr<ProfileManager>
{99, nullptr, "DebugActivateOpenContextRetention"},
{100, nullptr, "GetUserRegistrationNotifier"},
{101, nullptr, "GetUserStateChangeNotifier"},
- {102, nullptr, "GetBaasAccountManagerForSystemService"},
+ {102, &ACC_SU::GetBaasAccountManagerForSystemService, "GetBaasAccountManagerForSystemService"},
{103, nullptr, "GetBaasUserAvailabilityChangeNotifier"},
{104, nullptr, "GetProfileUpdateNotifier"},
{105, nullptr, "CheckNetworkServiceAvailabilityAsync"},
@@ -40,8 +40,8 @@ ACC_SU::ACC_SU(std::shared_ptr<Module> module_, std::shared_ptr<ProfileManager>
{152, nullptr, "LoadSignedDeviceIdentifierCacheForNintendoAccount"},
{190, nullptr, "GetUserLastOpenedApplication"},
{191, nullptr, "ActivateOpenContextHolder"},
- {200, nullptr, "BeginUserRegistration"},
- {201, nullptr, "CompleteUserRegistration"},
+ {200, &ACC_SU::BeginUserRegistration, "BeginUserRegistration"},
+ {201, &ACC_SU::CompleteUserRegistration, "CompleteUserRegistration"},
{202, nullptr, "CancelUserRegistration"},
{203, nullptr, "DeleteUser"},
{204, nullptr, "SetUserPosition"},