perf_overlays: add avg and 1p high/low

This commit is contained in:
Megamouse 2021-05-19 21:14:49 +02:00
parent f103004aa0
commit 98b668b3a8
9 changed files with 129 additions and 20 deletions

View file

@ -499,7 +499,7 @@ void debugger_frame::keyPressEvent(QKeyEvent* event)
default: break;
}
if (const size_t pos = std::basic_string_view<u32>(res.data(), 2).find_last_not_of(umax); pos != umax)
if (const usz pos = std::basic_string_view<u32>(res.data(), 2).find_last_not_of(umax); pos != umax)
m_debugger_list->ShowAddress(res[pos] - std::max(row, 0) * 4, true, true);
return;