summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2021-12-06 08:54:35 +0100
committerbunnei <bunneidev@gmail.com>2021-12-07 01:39:18 +0100
commit834c25f4d95c99c614e72b5c342a8a84eb20d7aa (patch)
tree6f0f58655a56a913bf543a43671558561fb9910c
parenthle: kernel: Remove unnecessary virtual specifier on EndWait. (diff)
downloadyuzu-834c25f4d95c99c614e72b5c342a8a84eb20d7aa.tar
yuzu-834c25f4d95c99c614e72b5c342a8a84eb20d7aa.tar.gz
yuzu-834c25f4d95c99c614e72b5c342a8a84eb20d7aa.tar.bz2
yuzu-834c25f4d95c99c614e72b5c342a8a84eb20d7aa.tar.lz
yuzu-834c25f4d95c99c614e72b5c342a8a84eb20d7aa.tar.xz
yuzu-834c25f4d95c99c614e72b5c342a8a84eb20d7aa.tar.zst
yuzu-834c25f4d95c99c614e72b5c342a8a84eb20d7aa.zip
-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:
KSynchronizationObject::ThreadListNode* n, s32 c)
: KThreadQueueWithoutEndWait(kernel_), m_objects(o), m_nodes(n), m_count(c) {}
- virtual void NotifyAvailable(KThread* waiting_thread, KSynchronizationObject* signaled_object,
- ResultCode wait_result) override {
+ void NotifyAvailable(KThread* waiting_thread, KSynchronizationObject* signaled_object,
+ ResultCode wait_result) override {
// Determine the sync index, and unlink all nodes.
s32 sync_index = -1;
for (auto i = 0; i < m_count; ++i) {