diff options
author | Lioncash <mathew1800@gmail.com> | 2019-03-15 02:51:03 +0100 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2019-03-16 04:02:10 +0100 |
commit | e0d1f119680e9fa842ade586106bcc6740930583 (patch) | |
tree | 5cd5d3335fbeb75e730ba82931cc5d7c11815f10 | |
parent | kernel/thread: Amend condition within UpdatePriority() (diff) | |
download | yuzu-e0d1f119680e9fa842ade586106bcc6740930583.tar yuzu-e0d1f119680e9fa842ade586106bcc6740930583.tar.gz yuzu-e0d1f119680e9fa842ade586106bcc6740930583.tar.bz2 yuzu-e0d1f119680e9fa842ade586106bcc6740930583.tar.lz yuzu-e0d1f119680e9fa842ade586106bcc6740930583.tar.xz yuzu-e0d1f119680e9fa842ade586106bcc6740930583.tar.zst yuzu-e0d1f119680e9fa842ade586106bcc6740930583.zip |
-rw-r--r-- | src/core/hle/kernel/thread.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/core/hle/kernel/thread.cpp b/src/core/hle/kernel/thread.cpp index 4b68b555f..c5cee12dd 100644 --- a/src/core/hle/kernel/thread.cpp +++ b/src/core/hle/kernel/thread.cpp @@ -306,12 +306,14 @@ void Thread::UpdatePriority() { // Find the highest priority among all the threads that are waiting for this thread's lock u32 new_priority = nominal_priority; if (!wait_mutex_threads.empty()) { - if (wait_mutex_threads.front()->current_priority < new_priority) + if (wait_mutex_threads.front()->current_priority < new_priority) { new_priority = wait_mutex_threads.front()->current_priority; + } } - if (new_priority == current_priority) + if (new_priority == current_priority) { return; + } scheduler->SetThreadPriority(this, new_priority); current_priority = new_priority; |