aboutsummaryrefslogtreecommitdiff
path: root/src/core/file_sys/card_image.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-11-16 07:02:37 -0800
committerGitHub <noreply@github.com>2018-11-16 07:02:37 -0800
commit5b8f70ea2ed13e0f2155cc3435647887a15d2915 (patch)
tree710840cf895216a59e2a4654d5c049b61837ab10 /src/core/file_sys/card_image.h
parent0b701751da5f1114a79078b536d57a4e5eb0321f (diff)
parent2d2ef05d8c5d476a17ef30609ed055ec0aa75609 (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.h3
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