summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar bunnei2021-12-05 23:54:35 -0800
committerGravatar bunnei2021-12-06 16:39:18 -0800
commit834c25f4d95c99c614e72b5c342a8a84eb20d7aa (patch)
tree6f0f58655a56a913bf543a43671558561fb9910c /src
parenthle: kernel: Remove unnecessary virtual specifier on EndWait. (diff)
downloadyuzu-834c25f4d95c99c614e72b5c342a8a84eb20d7aa.tar.gz
yuzu-834c25f4d95c99c614e72b5c342a8a84eb20d7aa.tar.xz
yuzu-834c25f4d95c99c614e72b5c342a8a84eb20d7aa.zip
hle: kernel: Remove unnecessary virtual specifier on NotifyAvailable.
Diffstat (limited to 'src')
-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) {