summaryrefslogtreecommitdiffstats
path: root/src/core/cpu_manager.cpp
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2022-06-30 22:54:05 +0200
committerLiam <byteslice@airmail.cc>2022-06-30 22:54:05 +0200
commit2c1e2c63c302dc4a2f0ad3452263d715d77aba8c (patch)
tree1996677a825ccabe6a7d497c59d29f8e4672fa66 /src/core/cpu_manager.cpp
parentMerge pull request #7454 from FernandoS27/new-core-timing (diff)
downloadyuzu-2c1e2c63c302dc4a2f0ad3452263d715d77aba8c.tar
yuzu-2c1e2c63c302dc4a2f0ad3452263d715d77aba8c.tar.gz
yuzu-2c1e2c63c302dc4a2f0ad3452263d715d77aba8c.tar.bz2
yuzu-2c1e2c63c302dc4a2f0ad3452263d715d77aba8c.tar.lz
yuzu-2c1e2c63c302dc4a2f0ad3452263d715d77aba8c.tar.xz
yuzu-2c1e2c63c302dc4a2f0ad3452263d715d77aba8c.tar.zst
yuzu-2c1e2c63c302dc4a2f0ad3452263d715d77aba8c.zip
Diffstat (limited to 'src/core/cpu_manager.cpp')
-rw-r--r--src/core/cpu_manager.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/core/cpu_manager.cpp b/src/core/cpu_manager.cpp
index fd6928105..9fc78f033 100644
--- a/src/core/cpu_manager.cpp
+++ b/src/core/cpu_manager.cpp
@@ -194,7 +194,9 @@ void CpuManager::PreemptSingleCore(bool from_running_enviroment) {
{
auto& scheduler = system.Kernel().Scheduler(current_core);
scheduler.Reload(scheduler.GetSchedulerCurrentThread());
- idle_count = 0;
+ if (!scheduler.IsIdle()) {
+ idle_count = 0;
+ }
}
}