mirror of https://github.com/PCSX2/pcsx2.git
R5900: Fix format string for TLB misses etc
This commit is contained in:
parent
8bbcb05303
commit
ae43cfaaf2
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue