mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-21 03:55:32 +00:00
overlays: Fix cpu usage in low detail mode
This commit is contained in:
parent
0012f39384
commit
6db25aa7fa
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue