summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/ns/pl_u.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/ns/pl_u.cpp b/src/core/hle/service/ns/pl_u.cpp
index bafba3d2f..b9c0f4b43 100644
--- a/src/core/hle/service/ns/pl_u.cpp
+++ b/src/core/hle/service/ns/pl_u.cpp
@@ -95,7 +95,7 @@ static void DecryptSharedFont(const std::vector<u32>& input, Kernel::PhysicalMem
95 offset += transformed_font.size() * sizeof(u32); 95 offset += transformed_font.size() * sizeof(u32);
96} 96}
97 97
98static void EncryptSharedFont(const std::vector<u8>& input, Kernel::PhysicalMemory& output) { 98void EncryptSharedFont(const std::vector<u8>& input, Kernel::PhysicalMemory& output) {
99 ASSERT_MSG(input.size() * sizeof(u32) < SHARED_FONT_MEM_SIZE, "Shared fonts exceeds 17mb!"); 99 ASSERT_MSG(input.size() * sizeof(u32) < SHARED_FONT_MEM_SIZE, "Shared fonts exceeds 17mb!");
100 100
101 const auto key = Common::swap32(EXPECTED_RESULT ^ EXPECTED_MAGIC); 101 const auto key = Common::swap32(EXPECTED_RESULT ^ EXPECTED_MAGIC);