diff --git a/rpcsx/ipmi.cpp b/rpcsx/ipmi.cpp index 55eca3d79..e9a199fd4 100644 --- a/rpcsx/ipmi.cpp +++ b/rpcsx/ipmi.cpp @@ -562,9 +562,9 @@ void ipmi::createGnmCompositorObjects(orbis::Process *) { void ipmi::createShellCoreObjects(orbis::Process *process) { auto fmtHex = [](auto value, bool upperCase = false) { if (upperCase) { - return std::format("{:X}", value); + return std::format("{:08X}", value); } - return std::format("{:x}", value); + return std::format("{:08x}", value); }; createIpmiServer(process, "SceSystemLoggerService");