diff options
| author | Zach Hilman <zachhilman@gmail.com> | 2019-09-23 09:52:49 -0400 |
|---|---|---|
| committer | Zach Hilman <zachhilman@gmail.com> | 2019-10-13 13:46:27 -0400 |
| commit | 1911f853918669f3258259b51ebc3dac19ed61ef (patch) | |
| tree | da540e440ccbff0a21a4492f2fdb1cf87cc6b878 /src/core/hle/service/ns/pl_u.h | |
| parent | 36d829c27bf3cfb32935624e736547467ac2f423 (diff) | |
pl_u: Fix mismatched rebase size error in font encryption
Diffstat (limited to 'src/core/hle/service/ns/pl_u.h')
| -rw-r--r-- | src/core/hle/service/ns/pl_u.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/core/hle/service/ns/pl_u.h b/src/core/hle/service/ns/pl_u.h index a8aa358a2..27161bd7a 100644 --- a/src/core/hle/service/ns/pl_u.h +++ b/src/core/hle/service/ns/pl_u.h @@ -5,7 +5,7 @@ #pragma once #include <memory> -#include "core/hle/kernel/physical_memory.h" +#include <vector> #include "core/hle/service/service.h" namespace Service { @@ -16,6 +16,8 @@ class FileSystemController; namespace NS { +void EncryptSharedFont(const std::vector<u32>& input, std::vector<u8>& output, std::size_t& offset); + class PL_U final : public ServiceFramework<PL_U> { public: explicit PL_U(Core::System& system); |
