diff options
| author | 2018-12-03 17:11:26 -0500 | |
|---|---|---|
| committer | 2018-12-03 17:11:26 -0500 | |
| commit | f6b22d9251bd45c7bafec2214911f7a818e99cbf (patch) | |
| tree | d79ba08d69fbd9686a8f49c9282c0c8a74af3609 /src/core/crypto/key_manager.cpp | |
| parent | Merge pull request #1822 from ReinUsesLisp/glsl-scope (diff) | |
| parent | filesystem: De-globalize registered_cache_union (diff) | |
| download | yuzu-f6b22d9251bd45c7bafec2214911f7a818e99cbf.tar.gz yuzu-f6b22d9251bd45c7bafec2214911f7a818e99cbf.tar.xz yuzu-f6b22d9251bd45c7bafec2214911f7a818e99cbf.zip | |
Merge pull request #1835 from lioncash/cache-global
filesystem: De-globalize registered_cache_union
Diffstat (limited to 'src/core/crypto/key_manager.cpp')
| -rw-r--r-- | src/core/crypto/key_manager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/crypto/key_manager.cpp b/src/core/crypto/key_manager.cpp index 904afa039..ed231927b 100644 --- a/src/core/crypto/key_manager.cpp +++ b/src/core/crypto/key_manager.cpp | |||
| @@ -794,7 +794,7 @@ void KeyManager::DeriveBase() { | |||
| 794 | 794 | ||
| 795 | void KeyManager::DeriveETicket(PartitionDataManager& data) { | 795 | void KeyManager::DeriveETicket(PartitionDataManager& data) { |
| 796 | // ETicket keys | 796 | // ETicket keys |
| 797 | const auto es = Service::FileSystem::GetUnionContents()->GetEntry( | 797 | const auto es = Service::FileSystem::GetUnionContents().GetEntry( |
| 798 | 0x0100000000000033, FileSys::ContentRecordType::Program); | 798 | 0x0100000000000033, FileSys::ContentRecordType::Program); |
| 799 | 799 | ||
| 800 | if (es == nullptr) | 800 | if (es == nullptr) |