From 29f1d01c06e2bdd76a6798a75b111f93e3316332 Mon Sep 17 00:00:00 2001 From: Bakugo Date: Mon, 1 Jul 2019 06:32:13 +0100 Subject: [PATCH] file_sys: Rename ContentRecordType::Patch to DeltaFragment Avoids potential confusion, since patches and DeltaFragments are not the same thing. Actual full patches are listed under the Program type. --- src/core/file_sys/nca_metadata.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/file_sys/nca_metadata.h b/src/core/file_sys/nca_metadata.h index 84d5cd1e02..53ea3709ba 100644 --- a/src/core/file_sys/nca_metadata.h +++ b/src/core/file_sys/nca_metadata.h @@ -37,7 +37,7 @@ enum class ContentRecordType : u8 { Control = 3, Manual = 4, Legal = 5, - Patch = 6, + DeltaFragment = 6, }; struct ContentRecord {