diff options
author | VolcaEM <63682805+VolcaEM@users.noreply.github.com> | 2020-05-31 19:12:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-31 19:12:09 +0200 |
commit | a087b3365a26b14ea6733b213998df5ff318afb3 (patch) | |
tree | d4a8d51bcd3c42beaa4cc63dfe82449218bcee30 /src | |
parent | 2b1cc232bce45e12d466fc606f78b484bb13a3a8 (diff) |
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+
Diffstat (limited to 'src')
-rw-r--r-- | src/core/hle/service/ldr/ldr.cpp | 2 |
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 { std::array<u8, 0x100> signature; u64_le application_id; u32_le size; - u8 nrr_kind; + u8 nrr_kind; // 7.0.0+ std::array<u8, 0x3> reserved_2; u32_le hash_offset; u32_le hash_count; |