diff options
author | Fernando Sahmkow <fsahmkow27@gmail.com> | 2020-02-26 00:43:28 +0100 |
---|---|---|
committer | Fernando Sahmkow <fsahmkow27@gmail.com> | 2020-06-27 17:35:14 +0200 |
commit | 15a79eb0d7abe752a9a55d0cfa7ea220e17318b7 (patch) | |
tree | 863357ab4be1ff9a72804c40455d6a4c4c493acd /src/core/cpu_manager.cpp | |
parent | SVC: Correct ArbitrateUnlock (diff) | |
download | yuzu-15a79eb0d7abe752a9a55d0cfa7ea220e17318b7.tar yuzu-15a79eb0d7abe752a9a55d0cfa7ea220e17318b7.tar.gz yuzu-15a79eb0d7abe752a9a55d0cfa7ea220e17318b7.tar.bz2 yuzu-15a79eb0d7abe752a9a55d0cfa7ea220e17318b7.tar.lz yuzu-15a79eb0d7abe752a9a55d0cfa7ea220e17318b7.tar.xz yuzu-15a79eb0d7abe752a9a55d0cfa7ea220e17318b7.tar.zst yuzu-15a79eb0d7abe752a9a55d0cfa7ea220e17318b7.zip |
Diffstat (limited to 'src/core/cpu_manager.cpp')
-rw-r--r-- | src/core/cpu_manager.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/core/cpu_manager.cpp b/src/core/cpu_manager.cpp index 9b9337131..6032cb0bf 100644 --- a/src/core/cpu_manager.cpp +++ b/src/core/cpu_manager.cpp @@ -81,8 +81,7 @@ void CpuManager::RunGuestThread() { while (true) { auto& physical_core = kernel.CurrentPhysicalCore(); if (!physical_core.IsInterrupted()) { - physical_core.Idle(); - // physical_core.Run(); + physical_core.Run(); } auto& scheduler = physical_core.Scheduler(); scheduler.TryDoContextSwitch(); |