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/submission_package.cpp | |
| 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/submission_package.cpp')
| -rw-r--r-- | src/core/file_sys/submission_package.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/file_sys/submission_package.cpp b/src/core/file_sys/submission_package.cpp index 2aaba4179..e1a4210db 100644 --- a/src/core/file_sys/submission_package.cpp +++ b/src/core/file_sys/submission_package.cpp @@ -252,7 +252,7 @@ void NSP::ReadNCAs(const std::vector<VirtualFile>& files) { continue; } - auto next_nca = std::make_shared<NCA>(next_file); + auto next_nca = std::make_shared<NCA>(next_file, nullptr, 0, keys); if (next_nca->GetType() == NCAContentType::Program) program_status[cnmt.GetTitleID()] = next_nca->GetStatus(); if (next_nca->GetStatus() == Loader::ResultStatus::Success || |
