mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 03:25:16 +00:00
SPU Profiler: adjust accumulation logic
Don't append trampoline time to verification time.
This commit is contained in:
parent
a0c1b250b6
commit
286e154d05
1 changed files with 1 additions and 1 deletions
|
@ -205,7 +205,7 @@ struct cpu_prof
|
|||
info.freq[name]++;
|
||||
|
||||
// Append verification time to fixed common name 0000000...chunk-0x3fffc
|
||||
if ((name & 0xffff) == 0)
|
||||
if (name >> 16 && (name & 0xffff) == 0)
|
||||
info.freq[0xffff]++;
|
||||
}
|
||||
else
|
||||
|
|
Loading…
Add table
Reference in a new issue