summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/core/hle/kernel/k_synchronization_object.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/kernel/k_synchronization_object.cpp b/src/core/hle/kernel/k_synchronization_object.cpp
index 6ae93b0ad..e4c5eb74f 100644
--- a/src/core/hle/kernel/k_synchronization_object.cpp
+++ b/src/core/hle/kernel/k_synchronization_object.cpp
@@ -22,8 +22,8 @@ public:
22 KSynchronizationObject::ThreadListNode* n, s32 c) 22 KSynchronizationObject::ThreadListNode* n, s32 c)
23 : KThreadQueueWithoutEndWait(kernel_), m_objects(o), m_nodes(n), m_count(c) {} 23 : KThreadQueueWithoutEndWait(kernel_), m_objects(o), m_nodes(n), m_count(c) {}
24 24
25 virtual void NotifyAvailable(KThread* waiting_thread, KSynchronizationObject* signaled_object, 25 void NotifyAvailable(KThread* waiting_thread, KSynchronizationObject* signaled_object,
26 ResultCode wait_result) override { 26 ResultCode wait_result) override {
27 // Determine the sync index, and unlink all nodes. 27 // Determine the sync index, and unlink all nodes.
28 s32 sync_index = -1; 28 s32 sync_index = -1;
29 for (auto i = 0; i < m_count; ++i) { 29 for (auto i = 0; i < m_count; ++i) {