mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-09 08:21:29 +12:00
Fix ppu_thread::dump_callstack()
This commit is contained in:
parent
55baaea8e7
commit
63080c22a3
1 changed files with 1 additions and 1 deletions
|
@ -455,7 +455,7 @@ std::string ppu_thread::dump_callstack() const
|
||||||
for (u32 sp : dump_callstack_list())
|
for (u32 sp : dump_callstack_list())
|
||||||
{
|
{
|
||||||
// TODO: function addresses too
|
// TODO: function addresses too
|
||||||
fmt::append(ret, "> from 0x%04llx (0x0)\n", vm::read64(static_cast<u32>(sp + 16)));
|
fmt::append(ret, "> from 0x%08x (0x0)\n", sp);
|
||||||
}
|
}
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue