R5900: Fix format string for TLB misses etc

This commit is contained in:
Connor McLaughlin 2022-05-24 18:05:25 +10:00 committed by refractionpcsx2
parent 8bbcb05303
commit ae43cfaaf2
1 changed files with 1 additions and 1 deletions

View File

@ -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: