diff options
author | bunnei <bunneidev@gmail.com> | 2018-07-20 01:13:07 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-20 01:13:07 +0200 |
commit | c6352ffc584aae8520a431d6dd1fc6983d47aa1d (patch) | |
tree | 862b040cc0b40b4ce584f6c559320d8c98b3fe41 | |
parent | Merge pull request #723 from lioncash/gdb (diff) | |
parent | pl_u: Remove printf specifier in log call in a log call in GetSharedFontInOrderOfPriority() (diff) | |
download | yuzu-c6352ffc584aae8520a431d6dd1fc6983d47aa1d.tar yuzu-c6352ffc584aae8520a431d6dd1fc6983d47aa1d.tar.gz yuzu-c6352ffc584aae8520a431d6dd1fc6983d47aa1d.tar.bz2 yuzu-c6352ffc584aae8520a431d6dd1fc6983d47aa1d.tar.lz yuzu-c6352ffc584aae8520a431d6dd1fc6983d47aa1d.tar.xz yuzu-c6352ffc584aae8520a431d6dd1fc6983d47aa1d.tar.zst yuzu-c6352ffc584aae8520a431d6dd1fc6983d47aa1d.zip |
-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 d6a12ede5..addf1087c 100644 --- a/src/core/hle/service/ns/pl_u.cpp +++ b/src/core/hle/service/ns/pl_u.cpp @@ -119,7 +119,7 @@ void PL_U::GetSharedMemoryNativeHandle(Kernel::HLERequestContext& ctx) { void PL_U::GetSharedFontInOrderOfPriority(Kernel::HLERequestContext& ctx) { IPC::RequestParser rp{ctx}; const u64 language_code{rp.Pop<u64>()}; // TODO(ogniK): Find out what this is used for - LOG_DEBUG(Service_NS, "called, language_code=%lx", language_code); + LOG_DEBUG(Service_NS, "called, language_code={:X}", language_code); IPC::ResponseBuilder rb{ctx, 4}; std::vector<u32> font_codes; std::vector<u32> font_offsets; |