summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/ldr/ldr.cpp
diff options
context:
space:
mode:
authorVolcaEM <63682805+VolcaEM@users.noreply.github.com>2020-06-18 15:45:47 +0200
committerGitHub <noreply@github.com>2020-06-18 15:45:47 +0200
commit684dfbf20906c4476a7bc28273be9ebd53ab196d (patch)
tree1aef868deb0be7733ddd934a0e263a4f774591be /src/core/hle/service/ldr/ldr.cpp
parentRemove unnecessary pragmas (diff)
downloadyuzu-684dfbf20906c4476a7bc28273be9ebd53ab196d.tar
yuzu-684dfbf20906c4476a7bc28273be9ebd53ab196d.tar.gz
yuzu-684dfbf20906c4476a7bc28273be9ebd53ab196d.tar.bz2
yuzu-684dfbf20906c4476a7bc28273be9ebd53ab196d.tar.lz
yuzu-684dfbf20906c4476a7bc28273be9ebd53ab196d.tar.xz
yuzu-684dfbf20906c4476a7bc28273be9ebd53ab196d.tar.zst
yuzu-684dfbf20906c4476a7bc28273be9ebd53ab196d.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/ldr/ldr.cpp4
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 {
};
static_assert(sizeof(NRRCertification) == 0x220, "NRRCertification has invalid size.");
-using SHA256Hash = std::array<u8, 0x20>;
-
struct NRRHeader {
u32_le magic;
u32_le certification_signature_key_generation; // 9.0.0+
@@ -99,6 +97,8 @@ struct NROHeader {
};
static_assert(sizeof(NROHeader) == 0x80, "NROHeader has invalid size.");
+using SHA256Hash = std::array<u8, 0x20>;
+
struct NROInfo {
SHA256Hash hash{};
VAddr nro_address{};