diff options
author | Lioncash <mathew1800@gmail.com> | 2020-04-17 04:39:58 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2020-04-17 04:45:44 +0200 |
commit | 8f9c599c9f7dff8c3c19375e443d7c6427ea11d3 (patch) | |
tree | 6dd941ea61b33418fc63488428adfdaada02f02a | |
parent | decode/memory: Resolve unused variable warning (diff) | |
download | yuzu-8f9c599c9f7dff8c3c19375e443d7c6427ea11d3.tar yuzu-8f9c599c9f7dff8c3c19375e443d7c6427ea11d3.tar.gz yuzu-8f9c599c9f7dff8c3c19375e443d7c6427ea11d3.tar.bz2 yuzu-8f9c599c9f7dff8c3c19375e443d7c6427ea11d3.tar.lz yuzu-8f9c599c9f7dff8c3c19375e443d7c6427ea11d3.tar.xz yuzu-8f9c599c9f7dff8c3c19375e443d7c6427ea11d3.tar.zst yuzu-8f9c599c9f7dff8c3c19375e443d7c6427ea11d3.zip |
-rw-r--r-- | src/core/crypto/key_manager.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/crypto/key_manager.cpp b/src/core/crypto/key_manager.cpp index 87e6a1fd3..8997c7082 100644 --- a/src/core/crypto/key_manager.cpp +++ b/src/core/crypto/key_manager.cpp @@ -1202,7 +1202,8 @@ const boost::container::flat_map<std::string, KeyIndex<S128KeyType>> KeyManager: {S128KeyType::Source, static_cast<u64>(SourceKeyType::KeyAreaKey), static_cast<u64>(KeyAreaKeyType::System)}}, {"titlekek_source", {S128KeyType::Source, static_cast<u64>(SourceKeyType::Titlekek), 0}}, - {"keyblob_mac_key_source", {S128KeyType::Source, static_cast<u64>(SourceKeyType::KeyblobMAC)}}, + {"keyblob_mac_key_source", + {S128KeyType::Source, static_cast<u64>(SourceKeyType::KeyblobMAC), 0}}, {"tsec_key", {S128KeyType::TSEC, 0, 0}}, {"secure_boot_key", {S128KeyType::SecureBoot, 0, 0}}, {"sd_seed", {S128KeyType::SDSeed, 0, 0}}, |