summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/acc/acc_u0.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-08-08 04:39:12 +0200
committerGitHub <noreply@github.com>2018-08-08 04:39:12 +0200
commit2bc296801a4f954b0757d03f92e02e743a90c04e (patch)
tree137dc59f5dce3d0be1b1e0d7797a0094df304280 /src/core/hle/service/acc/acc_u0.cpp
parentMerge pull request #967 from lioncash/sign (diff)
downloadyuzu-2bc296801a4f954b0757d03f92e02e743a90c04e.tar
yuzu-2bc296801a4f954b0757d03f92e02e743a90c04e.tar.gz
yuzu-2bc296801a4f954b0757d03f92e02e743a90c04e.tar.bz2
yuzu-2bc296801a4f954b0757d03f92e02e743a90c04e.tar.lz
yuzu-2bc296801a4f954b0757d03f92e02e743a90c04e.tar.xz
yuzu-2bc296801a4f954b0757d03f92e02e743a90c04e.tar.zst
yuzu-2bc296801a4f954b0757d03f92e02e743a90c04e.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/acc/acc_u0.cpp2
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"},