Fixed compilation errors on Unix

This commit is contained in:
L 2023-02-01 00:28:40 +01:00
parent b8c56cc23c
commit d4faf0c0e0
99 changed files with 1385 additions and 1659 deletions

View file

@ -271,7 +271,7 @@ void ScriptClass::KillThreads()
m_next = m_current->next;
delete m_current->m_Thread;
} while (m_current = m_next);
} while ((m_current = m_next) != nullptr);
m_Threads = NULL;
}