diff options
author | bunnei <bunneidev@gmail.com> | 2020-10-15 05:42:18 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-15 05:42:18 +0200 |
commit | 046cc81938857f77acb10fc4e0dae25aa2c1b6d3 (patch) | |
tree | e9367ff87dcd1403252244af77e63234eb8f91cf | |
parent | Merge pull request #4772 from goldenx86/block-rdna (diff) | |
parent | service: acc: Stub IManagerForApplication::StoreOpenContext. (diff) | |
download | yuzu-046cc81938857f77acb10fc4e0dae25aa2c1b6d3.tar yuzu-046cc81938857f77acb10fc4e0dae25aa2c1b6d3.tar.gz yuzu-046cc81938857f77acb10fc4e0dae25aa2c1b6d3.tar.bz2 yuzu-046cc81938857f77acb10fc4e0dae25aa2c1b6d3.tar.lz yuzu-046cc81938857f77acb10fc4e0dae25aa2c1b6d3.tar.xz yuzu-046cc81938857f77acb10fc4e0dae25aa2c1b6d3.tar.zst yuzu-046cc81938857f77acb10fc4e0dae25aa2c1b6d3.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/hle/service/acc/acc.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/core/hle/service/acc/acc.cpp b/src/core/hle/service/acc/acc.cpp index 6b1613510..2850dd805 100644 --- a/src/core/hle/service/acc/acc.cpp +++ b/src/core/hle/service/acc/acc.cpp @@ -496,7 +496,7 @@ public: {3, nullptr, "LoadIdTokenCache"}, {130, nullptr, "GetNintendoAccountUserResourceCacheForApplication"}, {150, nullptr, "CreateAuthorizationRequest"}, - {160, nullptr, "StoreOpenContext"}, + {160, &IManagerForApplication::StoreOpenContext, "StoreOpenContext"}, {170, nullptr, "LoadNetworkServiceLicenseKindAsync"}, }; // clang-format on @@ -520,6 +520,12 @@ private: rb.PushRaw<u64>(user_id.GetNintendoID()); } + void StoreOpenContext(Kernel::HLERequestContext& ctx) { + LOG_WARNING(Service_ACC, "(STUBBED) called"); + IPC::ResponseBuilder rb{ctx, 2}; + rb.Push(RESULT_SUCCESS); + } + Common::UUID user_id; }; |