Browse Source
Merge pull request #974 from lioncash/acc
acc: Add missing function table entries for GetUserCount
pull/15/merge
bunnei
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
2 additions and
2 deletions
-
src/core/hle/service/acc/acc_su.cpp
-
src/core/hle/service/acc/acc_u1.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"}, |
|
|
|
|
|
|
|
@ -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"}, |
|
|
|
|