summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/ldr
diff options
context:
space:
mode:
authorVolcaEM <63682805+VolcaEM@users.noreply.github.com>2020-06-14 19:30:08 +0200
committerGitHub <noreply@github.com>2020-06-14 19:30:08 +0200
commit761d2060493c5c4e1c920659d3b00d8a56164941 (patch)
tree6b9aaa37ec74010455db61dbc6e52e113f0dcce8 /src/core/hle/service/ldr
parentAttempt to fix crashes in SSBU and refactor IsValidNRO (diff)
downloadyuzu-761d2060493c5c4e1c920659d3b00d8a56164941.tar
yuzu-761d2060493c5c4e1c920659d3b00d8a56164941.tar.gz
yuzu-761d2060493c5c4e1c920659d3b00d8a56164941.tar.bz2
yuzu-761d2060493c5c4e1c920659d3b00d8a56164941.tar.lz
yuzu-761d2060493c5c4e1c920659d3b00d8a56164941.tar.xz
yuzu-761d2060493c5c4e1c920659d3b00d8a56164941.tar.zst
yuzu-761d2060493c5c4e1c920659d3b00d8a56164941.zip
Diffstat (limited to 'src/core/hle/service/ldr')
-rw-r--r--src/core/hle/service/ldr/ldr.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/hle/service/ldr/ldr.cpp b/src/core/hle/service/ldr/ldr.cpp
index 5b372b7db..20f268ec0 100644
--- a/src/core/hle/service/ldr/ldr.cpp
+++ b/src/core/hle/service/ldr/ldr.cpp
@@ -50,7 +50,7 @@ struct NRRCertification {
std::array<u8, 0x100> public_key; // Also known as modulus
std::array<u8, 0x100> signature;
};
-static_assert(sizeof(NRRCertification) == 0x220, "Certification has invalid size!");
+static_assert(sizeof(NRRCertification) == 0x220, "Certification has invalid size.");
using SHA256Hash = std::array<u8, 0x20>;
@@ -70,7 +70,7 @@ struct NRRHeader {
u64_le reserved_3;
};
#pragma pack()
-static_assert(sizeof(NRRHeader) == 0x350, "NRRHeader has invalid size!");
+static_assert(sizeof(NRRHeader) == 0x350, "NRRHeader has invalid size.");
#pragma pack(1)
struct SegmentHeader {
@@ -78,7 +78,7 @@ struct SegmentHeader {
u32_le memory_size;
};
#pragma pack()
-static_assert(sizeof(SegmentHeader) == 0x8, "SegmentHeader has invalid size!");
+static_assert(sizeof(SegmentHeader) == 0x8, "SegmentHeader has invalid size.");
#pragma pack(1)
struct NROHeader {