mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-11 07:18:13 -05:00
hle: kernel: Remove unnecessary virtual specifier on NotifyAvailable.
This commit is contained in:
@ -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,
|
void NotifyAvailable(KThread* waiting_thread, KSynchronizationObject* signaled_object,
|
||||||
ResultCode wait_result) override {
|
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) {
|
||||||
|
Reference in New Issue
Block a user