Przeglądaj źródła

hle: kernel: Remove unnecessary virtual specifier on NotifyAvailable.

bunnei 4 lat temu
rodzic
commit
834c25f4d9

+ 2 - 2
src/core/hle/kernel/k_synchronization_object.cpp

@@ -22,8 +22,8 @@ public:
                                                  KSynchronizationObject::ThreadListNode* n, s32 c)
                                                  KSynchronizationObject::ThreadListNode* n, s32 c)
         : KThreadQueueWithoutEndWait(kernel_), m_objects(o), m_nodes(n), m_count(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.
         // Determine the sync index, and unlink all nodes.
         s32 sync_index = -1;
         s32 sync_index = -1;
         for (auto i = 0; i < m_count; ++i) {
         for (auto i = 0; i < m_count; ++i) {