diff options
| author | 2020-06-16 15:57:02 +0200 | |
|---|---|---|
| committer | 2020-06-16 15:57:02 +0200 | |
| commit | 4b71bf654d54210c18e77abda1b3ca20c0e43a63 (patch) | |
| tree | a2f6c0a06489e83621ce2b26ca5d64e1ac253631 | |
| parent | Clang-format again (diff) | |
| download | yuzu-4b71bf654d54210c18e77abda1b3ca20c0e43a63.tar.gz yuzu-4b71bf654d54210c18e77abda1b3ca20c0e43a63.tar.xz yuzu-4b71bf654d54210c18e77abda1b3ca20c0e43a63.zip | |
Update assert string
| -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 09c17f41f..6daea3408 100644 --- a/src/core/hle/service/ldr/ldr.cpp +++ b/src/core/hle/service/ldr/ldr.cpp | |||
| @@ -50,7 +50,7 @@ struct NRRCertification { | |||
| 50 | std::array<u8, 0x100> public_key; // Also known as modulus | 50 | std::array<u8, 0x100> public_key; // Also known as modulus |
| 51 | std::array<u8, 0x100> signature; | 51 | std::array<u8, 0x100> signature; |
| 52 | }; | 52 | }; |
| 53 | static_assert(sizeof(NRRCertification) == 0x220, "Certification has invalid size."); | 53 | static_assert(sizeof(NRRCertification) == 0x220, "NRRCertification has invalid size."); |
| 54 | 54 | ||
| 55 | using SHA256Hash = std::array<u8, 0x20>; | 55 | using SHA256Hash = std::array<u8, 0x20>; |
| 56 | 56 | ||