summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
authorGravatar Lioncash2018-08-07 22:50:25 -0400
committerGravatar Lioncash2018-08-07 22:50:45 -0400
commit934a2b9604750300a48c5cedc5d5ff203482d0f6 (patch)
tree916c955b5139c2a12ffc3a590b0b33dfa8add74c /src/core
parentacc: Stub GetUserCount. (#973) (diff)
downloadyuzu-934a2b9604750300a48c5cedc5d5ff203482d0f6.tar.gz
yuzu-934a2b9604750300a48c5cedc5d5ff203482d0f6.tar.xz
yuzu-934a2b9604750300a48c5cedc5d5ff203482d0f6.zip
acc: Add missing function table entries for GetUserCount
Given this is stubbed within the common module in 5ac7b84, it should be added to the other relevant tables as well.
Diffstat (limited to 'src/core')
-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 {
8 8
9ACC_SU::ACC_SU(std::shared_ptr<Module> module) : Module::Interface(std::move(module), "acc:su") { 9ACC_SU::ACC_SU(std::shared_ptr<Module> module) : Module::Interface(std::move(module), "acc:su") {
10 static const FunctionInfo functions[] = { 10 static const FunctionInfo functions[] = {
11 {0, nullptr, "GetUserCount"}, 11 {0, &ACC_SU::GetUserCount, "GetUserCount"},
12 {1, &ACC_SU::GetUserExistence, "GetUserExistence"}, 12 {1, &ACC_SU::GetUserExistence, "GetUserExistence"},
13 {2, &ACC_SU::ListAllUsers, "ListAllUsers"}, 13 {2, &ACC_SU::ListAllUsers, "ListAllUsers"},
14 {3, &ACC_SU::ListOpenUsers, "ListOpenUsers"}, 14 {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 {
8 8
9ACC_U1::ACC_U1(std::shared_ptr<Module> module) : Module::Interface(std::move(module), "acc:u1") { 9ACC_U1::ACC_U1(std::shared_ptr<Module> module) : Module::Interface(std::move(module), "acc:u1") {
10 static const FunctionInfo functions[] = { 10 static const FunctionInfo functions[] = {
11 {0, nullptr, "GetUserCount"}, 11 {0, &ACC_U1::GetUserCount, "GetUserCount"},
12 {1, &ACC_U1::GetUserExistence, "GetUserExistence"}, 12 {1, &ACC_U1::GetUserExistence, "GetUserExistence"},
13 {2, &ACC_U1::ListAllUsers, "ListAllUsers"}, 13 {2, &ACC_U1::ListAllUsers, "ListAllUsers"},
14 {3, &ACC_U1::ListOpenUsers, "ListOpenUsers"}, 14 {3, &ACC_U1::ListOpenUsers, "ListOpenUsers"},