summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorBakugo <bakugo@b4k.co>2019-07-01 07:37:22 +0200
committerBakugo <bakugo@b4k.co>2019-07-01 07:37:22 +0200
commit79163fca80385b11c72dab286041c16e59cd1dd8 (patch)
tree773f55fba35363f15e23a101e1b540207c186315 /src
parentfile_sys: Rename ContentRecordType::Patch to DeltaFragment (diff)
downloadyuzu-79163fca80385b11c72dab286041c16e59cd1dd8.tar
yuzu-79163fca80385b11c72dab286041c16e59cd1dd8.tar.gz
yuzu-79163fca80385b11c72dab286041c16e59cd1dd8.tar.bz2
yuzu-79163fca80385b11c72dab286041c16e59cd1dd8.tar.lz
yuzu-79163fca80385b11c72dab286041c16e59cd1dd8.tar.xz
yuzu-79163fca80385b11c72dab286041c16e59cd1dd8.tar.zst
yuzu-79163fca80385b11c72dab286041c16e59cd1dd8.zip
Diffstat (limited to 'src')
-rw-r--r--src/core/file_sys/registered_cache.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/file_sys/registered_cache.cpp b/src/core/file_sys/registered_cache.cpp
index 4608490e0..46f9314d0 100644
--- a/src/core/file_sys/registered_cache.cpp
+++ b/src/core/file_sys/registered_cache.cpp
@@ -415,6 +415,9 @@ InstallResult RegisteredCache::InstallEntry(const NSP& nsp, bool overwrite_if_ex
const auto cnmt_file = section0->GetFiles()[0];
const CNMT cnmt(cnmt_file);
for (const auto& record : cnmt.GetContentRecords()) {
+ // Ignore DeltaFragments, they are not useful to us
+ if (record.type == ContentRecordType::DeltaFragment)
+ continue;
const auto nca = GetNCAFromNSPForID(nsp, record.nca_id);
if (nca == nullptr)
return InstallResult::ErrorCopyFailed;