summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/mutex.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/kernel/mutex.cpp')
-rw-r--r--src/core/hle/kernel/mutex.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/mutex.cpp b/src/core/hle/kernel/mutex.cpp
index cef961289..2cbca5e5b 100644
--- a/src/core/hle/kernel/mutex.cpp
+++ b/src/core/hle/kernel/mutex.cpp
@@ -90,7 +90,7 @@ void Mutex::UpdatePriority() {
90 if (!holding_thread) 90 if (!holding_thread)
91 return; 91 return;
92 92
93 s32 best_priority = THREADPRIO_LOWEST; 93 u32 best_priority = THREADPRIO_LOWEST;
94 for (auto& waiter : GetWaitingThreads()) { 94 for (auto& waiter : GetWaitingThreads()) {
95 if (waiter->current_priority < best_priority) 95 if (waiter->current_priority < best_priority)
96 best_priority = waiter->current_priority; 96 best_priority = waiter->current_priority;