aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/hle/kernel/k_scheduler.cpp
diff options
context:
space:
mode:
authorbunnei <[email protected]>2021-08-06 23:16:36 -0700
committerbunnei <[email protected]>2021-08-07 12:18:47 -0700
commitd1c502720d9adec47047800896594886e7952693 (patch)
tree923693df003ae4f3699cd1473ecddf22dd674c3e /src/core/hle/kernel/k_scheduler.cpp
parent77ad64b97d3d5d9d6f5189ad901e2cd98369c973 (diff)
downloadyuzu-android-d1c502720d9adec47047800896594886e7952693.tar.gz
yuzu-android-d1c502720d9adec47047800896594886e7952693.zip
core: hle: kernel: k_scheduler: Remove unnecessary MakeCurrentProcess.
Diffstat (limited to 'src/core/hle/kernel/k_scheduler.cpp')
-rw-r--r--src/core/hle/kernel/k_scheduler.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/core/hle/kernel/k_scheduler.cpp b/src/core/hle/kernel/k_scheduler.cpp
index e523c4923..f5236dfea 100644
--- a/src/core/hle/kernel/k_scheduler.cpp
+++ b/src/core/hle/kernel/k_scheduler.cpp
@@ -699,11 +699,6 @@ void KScheduler::Reload(KThread* thread) {
if (thread) {
ASSERT_MSG(thread->GetState() == ThreadState::Runnable, "Thread must be runnable.");
- auto* const thread_owner_process = thread->GetOwnerProcess();
- if (thread_owner_process != nullptr) {
- system.Kernel().MakeCurrentProcess(thread_owner_process);
- }
-
Core::ARM_Interface& cpu_core = system.ArmInterface(core_id);
cpu_core.LoadContext(thread->GetContext32());
cpu_core.LoadContext(thread->GetContext64());