summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar VolcaEM2020-05-31 19:12:09 +0200
committerGravatar GitHub2020-05-31 19:12:09 +0200
commita087b3365a26b14ea6733b213998df5ff318afb3 (patch)
treed4a8d51bcd3c42beaa4cc63dfe82449218bcee30
parentldr: Update NRR/NRO structs (diff)
downloadyuzu-a087b3365a26b14ea6733b213998df5ff318afb3.tar.gz
yuzu-a087b3365a26b14ea6733b213998df5ff318afb3.tar.xz
yuzu-a087b3365a26b14ea6733b213998df5ff318afb3.zip
Add comment to nrr_kind
According to Atmosphére (https://github.com/Atmosphere-NX/Atmosphere/blob/c7026b90940a1d88f9c10a6d98263bf22e654fa5/libraries/libstratosphere/include/stratosphere/ro/ro_types.hpp), nrr_kind (Atmosphére calls it "type") is 7.0.0+
-rw-r--r--src/core/hle/service/ldr/ldr.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/ldr/ldr.cpp b/src/core/hle/service/ldr/ldr.cpp
index 62d4bfc08..252b79d2c 100644
--- a/src/core/hle/service/ldr/ldr.cpp
+++ b/src/core/hle/service/ldr/ldr.cpp
@@ -58,7 +58,7 @@ struct NRRHeader {
58 std::array<u8, 0x100> signature; 58 std::array<u8, 0x100> signature;
59 u64_le application_id; 59 u64_le application_id;
60 u32_le size; 60 u32_le size;
61 u8 nrr_kind; 61 u8 nrr_kind; // 7.0.0+
62 std::array<u8, 0x3> reserved_2; 62 std::array<u8, 0x3> reserved_2;
63 u32_le hash_offset; 63 u32_le hash_offset;
64 u32_le hash_count; 64 u32_le hash_count;