From 2afc1060ef63c64cd1f541b37c219b340c84f722 Mon Sep 17 00:00:00 2001
From: Chloe Marcec <dmarcecguzman@gmail.com>
Date: Mon, 25 Jan 2021 02:47:40 +1100
Subject: [PATCH] Print Process ID and Thread ID as hex

---
 src/core/hle/service/lm/lm.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/core/hle/service/lm/lm.cpp b/src/core/hle/service/lm/lm.cpp
index 90e9e691a4..2a6d43d2a9 100644
--- a/src/core/hle/service/lm/lm.cpp
+++ b/src/core/hle/service/lm/lm.cpp
@@ -253,8 +253,8 @@ private:
         if (line_number && *line_number != 0) {
             output_log += fmt::format("Line: {}\n", *line_number);
         }
-        output_log += fmt::format("ProcessID: {}\n", entry.pid);
-        output_log += fmt::format("ThreadID: {}\n", entry.tid);
+        output_log += fmt::format("ProcessID: {:X}\n", entry.pid);
+        output_log += fmt::format("ThreadID: {:X}\n", entry.tid);
 
         if (text_log) {
             output_log += fmt::format("Log Text: {}\n", *text_log);