aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/nvdrv/interface.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-05-02 15:24:41 -0400
committerGitHub <noreply@github.com>2018-05-02 15:24:41 -0400
commit1147db9dd1026672b96ca9d548239cace85ce952 (patch)
treeedfd9282300ba280bf51ba8a99f8a727122a31c0 /src/core/hle/service/nvdrv/interface.cpp
parentb1a8e5914bb1651b42933abb5739087e723d83ea (diff)
parent7c9644646f595605036b9fe9e51c44716ee60fa3 (diff)
Merge pull request #431 from lioncash/fmt
general: Make formatting of logged hex values more straightforward
Diffstat (limited to 'src/core/hle/service/nvdrv/interface.cpp')
-rw-r--r--src/core/hle/service/nvdrv/interface.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/nvdrv/interface.cpp b/src/core/hle/service/nvdrv/interface.cpp
index 38b3a9a84..45d2862ef 100644
--- a/src/core/hle/service/nvdrv/interface.cpp
+++ b/src/core/hle/service/nvdrv/interface.cpp
@@ -75,7 +75,7 @@ void NVDRV::SetClientPID(Kernel::HLERequestContext& ctx) {
IPC::RequestParser rp{ctx};
pid = rp.Pop<u64>();
- NGLOG_WARNING(Service_NVDRV, "(STUBBED) called, pid={:#X}", pid);
+ NGLOG_WARNING(Service_NVDRV, "(STUBBED) called, pid=0x{:X}", pid);
IPC::ResponseBuilder rb{ctx, 3};
rb.Push(RESULT_SUCCESS);
rb.Push<u32>(0);