SPU Profiler: adjust accumulation logic

Don't append trampoline time to verification time.
This commit is contained in:
Nekotekina 2021-07-31 11:10:05 +03:00
parent a0c1b250b6
commit 286e154d05

View File

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