diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2020-09-18 02:45:33 +0200 |
---|---|---|
committer | Morph <39850852+Morph1984@users.noreply.github.com> | 2020-09-21 07:01:02 +0200 |
commit | 7a504a93650548412cdd41b75098c291be72161c (patch) | |
tree | 646533f7f54223b3eb9c530b23bef9178f53c615 /src/core/hle/service/acc/acc.cpp | |
parent | Merge pull request #4692 from ReinUsesLisp/remove-vsync (diff) | |
download | yuzu-7a504a93650548412cdd41b75098c291be72161c.tar yuzu-7a504a93650548412cdd41b75098c291be72161c.tar.gz yuzu-7a504a93650548412cdd41b75098c291be72161c.tar.bz2 yuzu-7a504a93650548412cdd41b75098c291be72161c.tar.lz yuzu-7a504a93650548412cdd41b75098c291be72161c.tar.xz yuzu-7a504a93650548412cdd41b75098c291be72161c.tar.zst yuzu-7a504a93650548412cdd41b75098c291be72161c.zip |
Diffstat (limited to 'src/core/hle/service/acc/acc.cpp')
-rw-r--r-- | src/core/hle/service/acc/acc.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/core/hle/service/acc/acc.cpp b/src/core/hle/service/acc/acc.cpp index eb54cb123..6b1613510 100644 --- a/src/core/hle/service/acc/acc.cpp +++ b/src/core/hle/service/acc/acc.cpp @@ -774,6 +774,17 @@ void Module::Interface::ListQualifiedUsers(Kernel::HLERequestContext& ctx) { rb.Push(RESULT_SUCCESS); } +void Module::Interface::LoadOpenContext(Kernel::HLERequestContext& ctx) { + LOG_WARNING(Service_ACC, "(STUBBED) called"); + + // This is similar to GetBaasAccountManagerForApplication + // This command is used concurrently with ListOpenContextStoredUsers + // TODO: Find the differences between this and GetBaasAccountManagerForApplication + IPC::ResponseBuilder rb{ctx, 2, 0, 1}; + rb.Push(RESULT_SUCCESS); + rb.PushIpcInterface<IManagerForApplication>(profile_manager->GetLastOpenedUser()); +} + void Module::Interface::ListOpenContextStoredUsers(Kernel::HLERequestContext& ctx) { LOG_WARNING(Service_ACC, "(STUBBED) called"); |