summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar David Marcec2020-04-29 01:13:03 +1000
committerGravatar David Marcec2020-04-29 01:13:03 +1000
commitfdbeb90bd0517236bc0ed726d368825eb2d1e4ea (patch)
tree1573fb6e4a6ef4d9985085c99e690a5849b2d5ef /src
parentaccount: ListQualifiedUsers (diff)
downloadyuzu-fdbeb90bd0517236bc0ed726d368825eb2d1e4ea.tar.gz
yuzu-fdbeb90bd0517236bc0ed726d368825eb2d1e4ea.tar.xz
yuzu-fdbeb90bd0517236bc0ed726d368825eb2d1e4ea.zip
Updated comment to reflect ListQualifiedUsers better
Diffstat (limited to 'src')
-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);