Browse Source
Merge pull request #724 from lioncash/printf
pl_u: Remove printf specifier in log call in a log call in GetSharedFontInOrderOfPriority()
pull/15/merge
bunnei
8 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
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) { |
|
|
void PL_U::GetSharedFontInOrderOfPriority(Kernel::HLERequestContext& ctx) { |
|
|
IPC::RequestParser rp{ctx}; |
|
|
IPC::RequestParser rp{ctx}; |
|
|
const u64 language_code{rp.Pop<u64>()}; // TODO(ogniK): Find out what this is used for
|
|
|
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}; |
|
|
IPC::ResponseBuilder rb{ctx, 4}; |
|
|
std::vector<u32> font_codes; |
|
|
std::vector<u32> font_codes; |
|
|
std::vector<u32> font_offsets; |
|
|
std::vector<u32> font_offsets; |
|
|
|