overlays: Fix cpu usage in low detail mode

This commit is contained in:
Megamouse 2021-02-24 20:35:04 +01:00 committed by Ivan
parent 0012f39384
commit 6db25aa7fa

View File

@ -453,7 +453,7 @@ namespace rsx
}
case detail_level::low:
{
if (m_cpu_usage < 0.)
if (m_detail == detail_level::low) // otherwise already acquired in medium
m_cpu_usage = static_cast<f32>(m_cpu_stats.get_usage());
[[fallthrough]];