mirror of
https://github.com/libretro/ppsspp.git
synced 2025-01-24 10:05:17 +00:00
Jit profiling: include func name from map.
This commit is contained in:
parent
d35717f5a8
commit
39de7eb930
@ -1562,7 +1562,12 @@ namespace MainWindow
|
||||
return TRUE;
|
||||
}
|
||||
if (jitAddr != (u32)-1) {
|
||||
swprintf_s(info->name, L"Jit::%08x", jitAddr);
|
||||
const char *label = symbolMap.GetDescription(jitAddr);
|
||||
if (label != NULL) {
|
||||
swprintf_s(info->name, L"Jit::%08x_%S", jitAddr, label);
|
||||
} else {
|
||||
swprintf_s(info->name, L"Jit::%08x", jitAddr);
|
||||
}
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user