mirror of
https://github.com/RPCS3/rpcs3.git
synced 2026-01-09 10:11:23 +01:00
Print SPU Group ID on the debugger
This commit is contained in:
parent
450e2c9a0e
commit
3a5f4ed757
|
|
@ -668,6 +668,11 @@ std::string spu_thread::dump() const
|
|||
{
|
||||
std::string ret = cpu_thread::dump();
|
||||
|
||||
if (group)
|
||||
{
|
||||
fmt::append(ret, "\nGroup ID: 0x%x", group->id);
|
||||
}
|
||||
|
||||
fmt::append(ret, "\nBlock Weight: %u (Retreats: %u)", block_counter, block_failure);
|
||||
fmt::append(ret, "\n[%s]", ch_mfc_cmd);
|
||||
fmt::append(ret, "\nTag Mask: 0x%08x", ch_tag_mask);
|
||||
|
|
|
|||
Loading…
Reference in a new issue