mirror of
https://github.com/Atmosphere-NX/Atmosphere-libs.git
synced 2025-06-28 14:02:40 +02:00
util: fix copy/paste error in intrusive lists
This commit is contained in:
parent
5e9628c1fa
commit
d8f5407095
@ -103,11 +103,11 @@ namespace sts::util {
|
||||
}
|
||||
|
||||
IntrusiveListNode *GetNext() {
|
||||
return this->prev;
|
||||
return this->next;
|
||||
}
|
||||
|
||||
const IntrusiveListNode *GetNext() const {
|
||||
return this->prev;
|
||||
return this->next;
|
||||
}
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user