Skip to content

Commit

Permalink
Fix ppu_thread::dump_callstack()
Browse files Browse the repository at this point in the history
  • Loading branch information
elad335 authored and Nekotekina committed Apr 3, 2020
1 parent 55baaea commit 63080c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rpcs3/Emu/Cell/PPUThread.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 63080c2

Please sign in to comment.