summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-08-08 08:56:00 +0200
committerGitHub <noreply@github.com>2018-08-08 08:56:00 +0200
commit4941e3d41219d4df4ca52c9256da67f6b08b6490 (patch)
tree4d68a833374a1d50175040f0ed15a2fccbee279f
parentMerge pull request #983 from mailwl/hid-fix (diff)
parentacc: Add missing function table entries for GetUserCount (diff)
downloadyuzu-4941e3d41219d4df4ca52c9256da67f6b08b6490.tar
yuzu-4941e3d41219d4df4ca52c9256da67f6b08b6490.tar.gz
yuzu-4941e3d41219d4df4ca52c9256da67f6b08b6490.tar.bz2
yuzu-4941e3d41219d4df4ca52c9256da67f6b08b6490.tar.lz
yuzu-4941e3d41219d4df4ca52c9256da67f6b08b6490.tar.xz
yuzu-4941e3d41219d4df4ca52c9256da67f6b08b6490.tar.zst
yuzu-4941e3d41219d4df4ca52c9256da67f6b08b6490.zip
-rw-r--r--src/core/hle/service/acc/acc_su.cpp2
-rw-r--r--src/core/hle/service/acc/acc_u1.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/acc/acc_su.cpp b/src/core/hle/service/acc/acc_su.cpp
index 9ffb40b22..8b2a71f37 100644
--- a/src/core/hle/service/acc/acc_su.cpp
+++ b/src/core/hle/service/acc/acc_su.cpp
@@ -8,7 +8,7 @@ namespace Service::Account {
ACC_SU::ACC_SU(std::shared_ptr<Module> module) : Module::Interface(std::move(module), "acc:su") {
static const FunctionInfo functions[] = {
- {0, nullptr, "GetUserCount"},
+ {0, &ACC_SU::GetUserCount, "GetUserCount"},
{1, &ACC_SU::GetUserExistence, "GetUserExistence"},
{2, &ACC_SU::ListAllUsers, "ListAllUsers"},
{3, &ACC_SU::ListOpenUsers, "ListOpenUsers"},
diff --git a/src/core/hle/service/acc/acc_u1.cpp b/src/core/hle/service/acc/acc_u1.cpp
index d101d4e0d..0ceaf06b5 100644
--- a/src/core/hle/service/acc/acc_u1.cpp
+++ b/src/core/hle/service/acc/acc_u1.cpp
@@ -8,7 +8,7 @@ namespace Service::Account {
ACC_U1::ACC_U1(std::shared_ptr<Module> module) : Module::Interface(std::move(module), "acc:u1") {
static const FunctionInfo functions[] = {
- {0, nullptr, "GetUserCount"},
+ {0, &ACC_U1::GetUserCount, "GetUserCount"},
{1, &ACC_U1::GetUserExistence, "GetUserExistence"},
{2, &ACC_U1::ListAllUsers, "ListAllUsers"},
{3, &ACC_U1::ListOpenUsers, "ListOpenUsers"},