summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/card_image.cpp
diff options
context:
space:
mode:
authorDavid <25727384+ogniK5377@users.noreply.github.com>2020-07-01 06:16:26 +0200
committerGitHub <noreply@github.com>2020-07-01 06:16:26 +0200
commit3bb63bc0b364ed10d478102d3174f55486438716 (patch)
treec8ecf8b20b877bd08701e0213e446e4bb9a8660c /src/core/file_sys/card_image.cpp
parentMerge pull request #4153 from ogniK5377/prepo-multibuf (diff)
parentcrypto: Make KeyManager a singleton class (diff)
downloadyuzu-3bb63bc0b364ed10d478102d3174f55486438716.tar
yuzu-3bb63bc0b364ed10d478102d3174f55486438716.tar.gz
yuzu-3bb63bc0b364ed10d478102d3174f55486438716.tar.bz2
yuzu-3bb63bc0b364ed10d478102d3174f55486438716.tar.lz
yuzu-3bb63bc0b364ed10d478102d3174f55486438716.tar.xz
yuzu-3bb63bc0b364ed10d478102d3174f55486438716.tar.zst
yuzu-3bb63bc0b364ed10d478102d3174f55486438716.zip
Diffstat (limited to 'src/core/file_sys/card_image.cpp')
-rw-r--r--src/core/file_sys/card_image.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/file_sys/card_image.cpp b/src/core/file_sys/card_image.cpp
index 07d0c8d5d..664a47e7f 100644
--- a/src/core/file_sys/card_image.cpp
+++ b/src/core/file_sys/card_image.cpp
@@ -178,7 +178,7 @@ u32 XCI::GetSystemUpdateVersion() {
return 0;
for (const auto& file : update->GetFiles()) {
- NCA nca{file, nullptr, 0, keys};
+ NCA nca{file, nullptr, 0};
if (nca.GetStatus() != Loader::ResultStatus::Success)
continue;
@@ -286,7 +286,7 @@ Loader::ResultStatus XCI::AddNCAFromPartition(XCIPartition part) {
continue;
}
- auto nca = std::make_shared<NCA>(file, nullptr, 0, keys);
+ auto nca = std::make_shared<NCA>(file, nullptr, 0);
if (nca->IsUpdate()) {
continue;
}