1
0
mirror of https://github.com/RPCS3/rpcs3.git synced 2025-01-31 12:31:45 +01:00

Print SPU Group ID on the debugger

This commit is contained in:
eladash 2019-04-20 22:25:49 +03:00 committed by Ani
parent 450e2c9a0e
commit 3a5f4ed757

View File

@ -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);