Fixup ppu/spu_thread::dump_all()

This commit is contained in:
Eladash 2020-04-08 11:19:13 +03:00 committed by Ivan
parent 2e18df7223
commit cc8f024c6c
2 changed files with 4 additions and 0 deletions

View file

@ -359,6 +359,8 @@ std::string ppu_thread::dump_all() const
{
std::string ret = cpu_thread::dump_misc();
ret += '\n';
ret += dump_misc();
ret += '\n';
ret += dump_regs();
ret += '\n';
ret += dump_callstack();

View file

@ -980,6 +980,8 @@ std::string spu_thread::dump_all() const
{
std::string ret = cpu_thread::dump_misc();
ret += '\n';
ret += dump_misc();
ret += '\n';
ret += dump_regs();
return ret;