mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-06 06:51:26 +12:00
Fixup ppu/spu_thread::dump_all()
This commit is contained in:
parent
2e18df7223
commit
cc8f024c6c
2 changed files with 4 additions and 0 deletions
|
@ -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();
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue