summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-07-20 01:13:07 +0200
committerGitHub <noreply@github.com>2018-07-20 01:13:07 +0200
commitc6352ffc584aae8520a431d6dd1fc6983d47aa1d (patch)
tree862b040cc0b40b4ce584f6c559320d8c98b3fe41 /src/core/hle/service
parentMerge pull request #723 from lioncash/gdb (diff)
parentpl_u: Remove printf specifier in log call in a log call in GetSharedFontInOrderOfPriority() (diff)
downloadyuzu-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
Diffstat (limited to 'src/core/hle/service')
-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 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;