summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/core/hle/service/acc/acc.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/core/hle/service/acc/acc.cpp b/src/core/hle/service/acc/acc.cpp
index 9b5f4eb91..4f4e1f083 100644
--- a/src/core/hle/service/acc/acc.cpp
+++ b/src/core/hle/service/acc/acc.cpp
@@ -431,7 +431,9 @@ void Module::Interface::GetProfileEditor(Kernel::HLERequestContext& ctx) {
431void Module::Interface::ListQualifiedUsers(Kernel::HLERequestContext& ctx) { 431void Module::Interface::ListQualifiedUsers(Kernel::HLERequestContext& ctx) {
432 LOG_DEBUG(Service_ACC, "called"); 432 LOG_DEBUG(Service_ACC, "called");
433 433
434 // All users should be qualified 434 // All users should be qualified. We don't actually have parental control or anything to do with
435 // nintendo online currently. We're just going to assume the user running the game has access to
436 // the game regardless of parental control settings.
435 ctx.WriteBuffer(profile_manager->GetAllUsers()); 437 ctx.WriteBuffer(profile_manager->GetAllUsers());
436 IPC::ResponseBuilder rb{ctx, 2}; 438 IPC::ResponseBuilder rb{ctx, 2};
437 rb.Push(RESULT_SUCCESS); 439 rb.Push(RESULT_SUCCESS);