diff options
| author | bunnei <bunneidev@gmail.com> | 2018-11-16 07:02:37 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-11-16 07:02:37 -0800 |
| commit | 5b8f70ea2ed13e0f2155cc3435647887a15d2915 (patch) | |
| tree | 710840cf895216a59e2a4654d5c049b61837ab10 /src/core/file_sys/card_image.h | |
| parent | 0b701751da5f1114a79078b536d57a4e5eb0321f (diff) | |
| parent | 2d2ef05d8c5d476a17ef30609ed055ec0aa75609 (diff) | |
Merge pull request #1632 from DarkLordZach/keys-manager-optimizations
game_list: Optimize game list refresh
Diffstat (limited to 'src/core/file_sys/card_image.h')
| -rw-r--r-- | src/core/file_sys/card_image.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/file_sys/card_image.h b/src/core/file_sys/card_image.h index 8f62571cf..25f5914b6 100644 --- a/src/core/file_sys/card_image.h +++ b/src/core/file_sys/card_image.h @@ -9,6 +9,7 @@ #include <vector> #include "common/common_types.h" #include "common/swap.h" +#include "core/crypto/key_manager.h" #include "core/file_sys/vfs.h" namespace Loader { @@ -107,5 +108,7 @@ private: std::shared_ptr<NSP> secure_partition; std::shared_ptr<NCA> program; std::vector<std::shared_ptr<NCA>> ncas; + + Core::Crypto::KeyManager keys; }; } // namespace FileSys |
