diff options
| author | bunnei <bunneidev@gmail.com> | 2022-10-30 16:37:28 -0700 |
|---|---|---|
| committer | bunnei <bunneidev@gmail.com> | 2022-11-02 16:09:30 -0700 |
| commit | 75ab52f05b39a625c039705f9290278efdad98f7 (patch) | |
| tree | 71671002c392744436411b25ecf56303c3b9d523 /src/core/hle/service/acc/acc.h | |
| parent | 83f649240e7b9c2ba0346abe19cc9f388f469115 (diff) | |
core: hle: service: acc: Fix ListOpenContextStoredUsers/StoreOpenContext.
- These APIs are used to capture the opened users and allow that state to be persisted across processes.
- They are not intended to just return the system opened users, that is what ListOpenUsers is for.
- Fixes the launch hang with Bayonetta 3.
Diffstat (limited to 'src/core/hle/service/acc/acc.h')
| -rw-r--r-- | src/core/hle/service/acc/acc.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/core/hle/service/acc/acc.h b/src/core/hle/service/acc/acc.h index 1621e7c0a..9411b0b92 100644 --- a/src/core/hle/service/acc/acc.h +++ b/src/core/hle/service/acc/acc.h @@ -35,7 +35,6 @@ public: void InitializeApplicationInfoV2(Kernel::HLERequestContext& ctx); void GetProfileEditor(Kernel::HLERequestContext& ctx); void ListQualifiedUsers(Kernel::HLERequestContext& ctx); - void LoadOpenContext(Kernel::HLERequestContext& ctx); void ListOpenContextStoredUsers(Kernel::HLERequestContext& ctx); void StoreSaveDataThumbnailApplication(Kernel::HLERequestContext& ctx); void StoreSaveDataThumbnailSystem(Kernel::HLERequestContext& ctx); |
