mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-12-06 07:12:28 +01:00
overlays: Fix cpu usage in low detail mode
This commit is contained in:
parent
0012f39384
commit
6db25aa7fa
|
|
@ -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]];
|
||||
|
|
|
|||
Loading…
Reference in a new issue