diff options
| author | 2020-06-18 15:45:47 +0200 | |
|---|---|---|
| committer | 2020-06-18 15:45:47 +0200 | |
| commit | 684dfbf20906c4476a7bc28273be9ebd53ab196d (patch) | |
| tree | 1aef868deb0be7733ddd934a0e263a4f774591be /src/core/hle/service/ldr | |
| parent | Remove unnecessary pragmas (diff) | |
| download | yuzu-684dfbf20906c4476a7bc28273be9ebd53ab196d.tar.gz yuzu-684dfbf20906c4476a7bc28273be9ebd53ab196d.tar.xz yuzu-684dfbf20906c4476a7bc28273be9ebd53ab196d.zip | |
Move SHA256Hash to its original position
It's not needed to have it in its previous position anymore
Diffstat (limited to 'src/core/hle/service/ldr')
| -rw-r--r-- | src/core/hle/service/ldr/ldr.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/ldr/ldr.cpp b/src/core/hle/service/ldr/ldr.cpp index 9ce2db191..9f376657c 100644 --- a/src/core/hle/service/ldr/ldr.cpp +++ b/src/core/hle/service/ldr/ldr.cpp | |||
| @@ -52,8 +52,6 @@ struct NRRCertification { | |||
| 52 | }; | 52 | }; |
| 53 | static_assert(sizeof(NRRCertification) == 0x220, "NRRCertification has invalid size."); | 53 | static_assert(sizeof(NRRCertification) == 0x220, "NRRCertification has invalid size."); |
| 54 | 54 | ||
| 55 | using SHA256Hash = std::array<u8, 0x20>; | ||
| 56 | |||
| 57 | struct NRRHeader { | 55 | struct NRRHeader { |
| 58 | u32_le magic; | 56 | u32_le magic; |
| 59 | u32_le certification_signature_key_generation; // 9.0.0+ | 57 | u32_le certification_signature_key_generation; // 9.0.0+ |
| @@ -99,6 +97,8 @@ struct NROHeader { | |||
| 99 | }; | 97 | }; |
| 100 | static_assert(sizeof(NROHeader) == 0x80, "NROHeader has invalid size."); | 98 | static_assert(sizeof(NROHeader) == 0x80, "NROHeader has invalid size."); |
| 101 | 99 | ||
| 100 | using SHA256Hash = std::array<u8, 0x20>; | ||
| 101 | |||
| 102 | struct NROInfo { | 102 | struct NROInfo { |
| 103 | SHA256Hash hash{}; | 103 | SHA256Hash hash{}; |
| 104 | VAddr nro_address{}; | 104 | VAddr nro_address{}; |