Skip to content

Commit

Permalink
Gregory my boy
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshuaMKW committed Feb 9, 2024
1 parent a7ac7ca commit 893673c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/JSystem/JGadget/List.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -357,9 +357,9 @@ namespace JGadget {

iterator begin() _GLIBCXX_NOEXCEPT { return iterator(mBegin); }
const_iterator begin() const _GLIBCXX_NOEXCEPT { return const_iterator(mBegin); }
iterator end() _GLIBCXX_NOEXCEPT { return iterator(reinterpret_cast<TNode_ *>(&mEnd)); }
iterator end() _GLIBCXX_NOEXCEPT { return iterator(reinterpret_cast<TNode_ *>(&mBegin)); }
const_iterator end() const _GLIBCXX_NOEXCEPT {
return const_iterator(reinterpret_cast<const TNode_ *>(&mEnd));
return const_iterator(reinterpret_cast<const TNode_ *>(&mBegin));
}

#if __cplusplus >= 201103L
Expand Down
1 change: 1 addition & 0 deletions include/SMS/Enemy/Conductor.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ public:
void registerOtherObj(JDrama::TViewObj *);
void registerSDLModelData(void * /*SDLModelData*/);

u32 _0C;
JGadget::TList<TLiveActor *> _10;
JGadget::TList<TLiveActor *> _20;
JGadget::TList<TLiveActor *> _30;
Expand Down

0 comments on commit 893673c

Please sign in to comment.