SPU/PPU debugger: use ':' instead of '='

This commit is contained in:
Eladash 2020-05-05 07:23:12 +03:00 committed by Ivan
parent 142a1da0e0
commit 1bd6cb2105
2 changed files with 14 additions and 14 deletions

View file

@ -806,7 +806,7 @@ std::string spu_thread::dump_regs() const
for (u32 i = 0; i < 128; i++)
{
fmt::append(ret, "r%d = %s\n", i, gpr[i]);
fmt::append(ret, "r%d: %s\n", i, gpr[i]);
}
fmt::append(ret, "\nEvent Stat: 0x%x\n", +ch_event_stat);