diff options
| author | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2026-08-07 16:40:56 -0400 |
|---|---|---|
| committer | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2026-08-07 16:40:56 -0400 |
| commit | 07b55421f9ce2db2fecbaaa34a3e1b59d6f231a7 (patch) | |
| tree | ff592e73778c07836dbbf93912b8a2c248c6307a /include/JSystem/JSupport | |
| parent | 5e00819c5ba6ea0c7177d2f0aae29ccc7c49f55c (diff) | |
msg inline fixes, remove some fake jsystem inlines
Diffstat (limited to 'include/JSystem/JSupport')
| -rw-r--r-- | include/JSystem/JSupport/JSUList.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/JSystem/JSupport/JSUList.h b/include/JSystem/JSupport/JSUList.h index f28f6082..4f00f4ec 100644 --- a/include/JSystem/JSupport/JSUList.h +++ b/include/JSystem/JSupport/JSUList.h @@ -173,15 +173,15 @@ public: JSUTree<T>* getLastChild() const { return (JSUTree<T>*)this->getLast(); } - JSUTree<T>* getNextChild() const { return (JSUTree<T>*)this->getNext(); } + JSUTree<T>* getNextChild() const { return (JSUTree<T>*)this->mNext; } - JSUTree<T>* getPrevChild() const { return (JSUTree<T>*)this->getPrev(); } + JSUTree<T>* getPrevChild() const { return (JSUTree<T>*)this->mPrev; } u32 getNumChildren() const { return this->getNumLinks(); } T* getObject() const { return (T*)this->getObjectPtr(); } - JSUTree<T>* getParent() const { return (JSUTree<T>*)this->getList(); } + JSUTree<T>* getParent() const { return (JSUTree<T>*)this->mList; } }; template <typename T> |
