summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
authorGravatar Bakugo2019-07-01 06:32:13 +0100
committerGravatar Bakugo2019-07-01 06:32:13 +0100
commit306a24aad77b9e359b858676a9549cb70f35bf22 (patch)
treee5c2281ae384f47508cb919b857b687ec10dd741 /src/core
parentMerge pull request #2583 from FernandoS27/core-timing-safe (diff)
downloadyuzu-306a24aad77b9e359b858676a9549cb70f35bf22.tar.gz
yuzu-306a24aad77b9e359b858676a9549cb70f35bf22.tar.xz
yuzu-306a24aad77b9e359b858676a9549cb70f35bf22.zip
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.
Diffstat (limited to 'src/core')
-rw-r--r--src/core/file_sys/nca_metadata.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/file_sys/nca_metadata.h b/src/core/file_sys/nca_metadata.h
index 84d5cd1e0..53ea3709b 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 {
37 Control = 3, 37 Control = 3,
38 Manual = 4, 38 Manual = 4,
39 Legal = 5, 39 Legal = 5,
40 Patch = 6, 40 DeltaFragment = 6,
41}; 41};
42 42
43struct ContentRecord { 43struct ContentRecord {