diff options
| author | bunnei <bunneidev@gmail.com> | 2018-08-07 22:39:12 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-08-07 22:39:12 -0400 |
| commit | 2bc296801a4f954b0757d03f92e02e743a90c04e (patch) | |
| tree | 137dc59f5dce3d0be1b1e0d7797a0094df304280 /src/core/hle/service/acc/acc_u0.cpp | |
| parent | 80cfd88e4ec5d2862227dedef5b9f709a8350319 (diff) | |
acc: Stub GetUserCount. (#973)
- Used by Pokken Tournament DX.
Diffstat (limited to 'src/core/hle/service/acc/acc_u0.cpp')
| -rw-r--r-- | src/core/hle/service/acc/acc_u0.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/acc/acc_u0.cpp b/src/core/hle/service/acc/acc_u0.cpp index 44e21ac09..d84c8b2e1 100644 --- a/src/core/hle/service/acc/acc_u0.cpp +++ b/src/core/hle/service/acc/acc_u0.cpp @@ -8,7 +8,7 @@ namespace Service::Account { ACC_U0::ACC_U0(std::shared_ptr<Module> module) : Module::Interface(std::move(module), "acc:u0") { static const FunctionInfo functions[] = { - {0, nullptr, "GetUserCount"}, + {0, &ACC_U0::GetUserCount, "GetUserCount"}, {1, &ACC_U0::GetUserExistence, "GetUserExistence"}, {2, &ACC_U0::ListAllUsers, "ListAllUsers"}, {3, &ACC_U0::ListOpenUsers, "ListOpenUsers"}, |
