From ae43cfaaf2708f2c9f5f6179409f7804a80d5861 Mon Sep 17 00:00:00 2001 From: Connor McLaughlin Date: Tue, 24 May 2022 18:05:25 +1000 Subject: [PATCH] R5900: Fix format string for TLB misses etc --- pcsx2/R5900Exceptions.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcsx2/R5900Exceptions.h b/pcsx2/R5900Exceptions.h index a23dc3193a..ba53d188e6 100644 --- a/pcsx2/R5900Exceptions.h +++ b/pcsx2/R5900Exceptions.h @@ -40,7 +40,7 @@ public: std::string& Message() override { return m_message; } std::string FormatMessage() const { - return fmt::format("(EE pc:{:8.8X}) {}", cpuRegs.pc, m_message.c_str()); + return fmt::format("(EE pc:{:08X}) {}", cpuRegs.pc, m_message.c_str()); } protected: