diff options
| author | 2019-09-21 22:17:30 -0400 | |
|---|---|---|
| committer | 2019-09-21 22:17:30 -0400 | |
| commit | 885ea2de2ad998102e0deb547a6a3297396b9d1a (patch) | |
| tree | 834ea4c50a0475b7e629d439b3e336481ad441a2 | |
| parent | pl_u: Use OSS system archives if real archives don't exist (diff) | |
| download | yuzu-885ea2de2ad998102e0deb547a6a3297396b9d1a.tar.gz yuzu-885ea2de2ad998102e0deb547a6a3297396b9d1a.tar.xz yuzu-885ea2de2ad998102e0deb547a6a3297396b9d1a.zip | |
pl_u: Remove excess static qualifier
| -rw-r--r-- | src/core/hle/service/ns/pl_u.cpp | 2 |
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 08f7a2412..7586e3e6c 100644 --- a/src/core/hle/service/ns/pl_u.cpp +++ b/src/core/hle/service/ns/pl_u.cpp | |||
| @@ -88,7 +88,7 @@ static void DecryptSharedFont(const std::vector<u32>& input, Kernel::PhysicalMem | |||
| 88 | offset += transformed_font.size() * sizeof(u32); | 88 | offset += transformed_font.size() * sizeof(u32); |
| 89 | } | 89 | } |
| 90 | 90 | ||
| 91 | static void EncryptSharedFont(const std::vector<u8>& input, Kernel::PhysicalMemory& output) { | 91 | void EncryptSharedFont(const std::vector<u8>& input, Kernel::PhysicalMemory& output) { |
| 92 | ASSERT_MSG(input.size() * sizeof(u32) < SHARED_FONT_MEM_SIZE, "Shared fonts exceeds 17mb!"); | 92 | ASSERT_MSG(input.size() * sizeof(u32) < SHARED_FONT_MEM_SIZE, "Shared fonts exceeds 17mb!"); |
| 93 | 93 | ||
| 94 | const auto key = Common::swap32(EXPECTED_RESULT ^ EXPECTED_MAGIC); | 94 | const auto key = Common::swap32(EXPECTED_RESULT ^ EXPECTED_MAGIC); |