mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-05 06:26:49 +00:00
PPU debugger: Implement PPU calling history
This commit is contained in:
parent
c2f0fbcd82
commit
8e2c34a003
8 changed files with 186 additions and 35 deletions
|
|
@ -47,6 +47,13 @@ bool ppu_thread_exit(ppu_thread& ppu)
|
|||
dct.used -= ppu.stack_size;
|
||||
}
|
||||
|
||||
if (ppu.call_history.index)
|
||||
{
|
||||
std::string str = fmt::format("%s", ppu.call_history);
|
||||
ppu.call_history.index = 0;
|
||||
ppu_log.notice("Calling history: %s", str);
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue