diff options
author | Lioncash <mathew1800@gmail.com> | 2018-07-19 21:44:02 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-07-19 21:44:04 +0200 |
commit | 68c1ffdd1c19b4bddb325a84238e12cd6566170e (patch) | |
tree | c158335b12ee1265809b3125d1378957829b62b7 /src/core/hle/service/ns | |
parent | Merge pull request #714 from lioncash/index (diff) | |
download | yuzu-68c1ffdd1c19b4bddb325a84238e12cd6566170e.tar yuzu-68c1ffdd1c19b4bddb325a84238e12cd6566170e.tar.gz yuzu-68c1ffdd1c19b4bddb325a84238e12cd6566170e.tar.bz2 yuzu-68c1ffdd1c19b4bddb325a84238e12cd6566170e.tar.lz yuzu-68c1ffdd1c19b4bddb325a84238e12cd6566170e.tar.xz yuzu-68c1ffdd1c19b4bddb325a84238e12cd6566170e.tar.zst yuzu-68c1ffdd1c19b4bddb325a84238e12cd6566170e.zip |
Diffstat (limited to 'src/core/hle/service/ns')
-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; |