1
0
mirror of https://github.com/RPCS3/rpcs3.git synced 2024-11-25 20:22:30 +01:00

Fix ppu_thread::dump_callstack()

This commit is contained in:
Eladash 2020-04-03 23:20:32 +03:00 committed by Ivan
parent 55baaea8e7
commit 63080c22a3

View File

@ -455,7 +455,7 @@ std::string ppu_thread::dump_callstack() const
for (u32 sp : dump_callstack_list())
{
// 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;