diff options
| author | Lioncash <mathew1800@gmail.com> | 2018-08-07 22:50:25 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2018-08-07 22:50:45 -0400 |
| commit | 934a2b9604750300a48c5cedc5d5ff203482d0f6 (patch) | |
| tree | 916c955b5139c2a12ffc3a590b0b33dfa8add74c /src/core/hle/service/acc/acc_su.cpp | |
| parent | 2bc296801a4f954b0757d03f92e02e743a90c04e (diff) | |
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/hle/service/acc/acc_su.cpp')
| -rw-r--r-- | src/core/hle/service/acc/acc_su.cpp | 2 |
1 files changed, 1 insertions, 1 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"}, |
