mirror of
https://github.com/isledecomp/isle.git
synced 2025-10-23 00:14:22 +00:00
Improve FUN_10061010
, other fixes (#1634)
Co-authored-by: jonschz <jonschz@users.noreply.github.com>
This commit is contained in:
@@ -244,11 +244,11 @@ inline MxBool MxListCursor<T>::Next()
|
||||
template <class T>
|
||||
inline MxBool MxListCursor<T>::Next(T& p_obj)
|
||||
{
|
||||
if (!m_match) {
|
||||
m_match = m_list->m_first;
|
||||
if (m_match) {
|
||||
m_match = m_match->GetNext();
|
||||
}
|
||||
else {
|
||||
m_match = m_match->GetNext();
|
||||
m_match = m_list->m_first;
|
||||
}
|
||||
|
||||
if (m_match) {
|
||||
|
Reference in New Issue
Block a user