diff options
| author | 2018-07-19 16:13:07 -0700 | |
|---|---|---|
| committer | 2018-07-19 16:13:07 -0700 | |
| commit | c6352ffc584aae8520a431d6dd1fc6983d47aa1d (patch) | |
| tree | 862b040cc0b40b4ce584f6c559320d8c98b3fe41 /src | |
| parent | Merge pull request #723 from lioncash/gdb (diff) | |
| parent | pl_u: Remove printf specifier in log call in a log call in GetSharedFontInOrd... (diff) | |
| download | yuzu-c6352ffc584aae8520a431d6dd1fc6983d47aa1d.tar.gz yuzu-c6352ffc584aae8520a431d6dd1fc6983d47aa1d.tar.xz yuzu-c6352ffc584aae8520a431d6dd1fc6983d47aa1d.zip | |
Merge pull request #724 from lioncash/printf
pl_u: Remove printf specifier in log call in a log call in GetSharedFontInOrderOfPriority()
Diffstat (limited to 'src')
| -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) { | |||
| 119 | void PL_U::GetSharedFontInOrderOfPriority(Kernel::HLERequestContext& ctx) { | 119 | void PL_U::GetSharedFontInOrderOfPriority(Kernel::HLERequestContext& ctx) { |
| 120 | IPC::RequestParser rp{ctx}; | 120 | IPC::RequestParser rp{ctx}; |
| 121 | const u64 language_code{rp.Pop<u64>()}; // TODO(ogniK): Find out what this is used for | 121 | const u64 language_code{rp.Pop<u64>()}; // TODO(ogniK): Find out what this is used for |
| 122 | LOG_DEBUG(Service_NS, "called, language_code=%lx", language_code); | 122 | LOG_DEBUG(Service_NS, "called, language_code={:X}", language_code); |
| 123 | IPC::ResponseBuilder rb{ctx, 4}; | 123 | IPC::ResponseBuilder rb{ctx, 4}; |
| 124 | std::vector<u32> font_codes; | 124 | std::vector<u32> font_codes; |
| 125 | std::vector<u32> font_offsets; | 125 | std::vector<u32> font_offsets; |