From b5b351d55af54d7d063038c1eebf12856e6d2eac Mon Sep 17 00:00:00 2001 From: Stephen Miller <56742918+StevenMiller123@users.noreply.github.com> Date: Sun, 7 Sep 2025 17:23:29 -0500 Subject: [PATCH] Fix hex formatting for NpScore event flag (#107) This fixes the name of the SceNpScoreIpc event flag, fixing issues with libSceNpScore's module init failing. --- rpcsx/ipmi.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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");