diff --git a/rpcs3/Emu/Cell/PPUThread.cpp b/rpcs3/Emu/Cell/PPUThread.cpp index e01a06e160..fe47e25764 100644 --- a/rpcs3/Emu/Cell/PPUThread.cpp +++ b/rpcs3/Emu/Cell/PPUThread.cpp @@ -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(sp + 16))); + fmt::append(ret, "> from 0x%08x (0x0)\n", sp); } return ret;