47 % with random changes

This commit is contained in:
jonschz 2025-07-12 22:04:03 +02:00
parent a3b810452a
commit 8f37395ae8

View File

@ -217,16 +217,16 @@ void Act3List::FUN_100720d0(MxU32 p_objectId)
// TODO: Something is wrong about these first two lines
// LINE: LEGO1 0x1007215d
Act3List::iterator its = begin()++;
Act3List::iterator it = begin();
Act3ListElement& firstItem = *(its++);
Act3ListElement& firstItem = *it++;
// // LINE: LEGO1 0x100721d4 Not pinnable, appears multiple times
for (Act3List::iterator it = its; it != end(); it++) {
for (; it != end(); it++) {
// LINE: LEGO1 0x1007217c
if ((*it).m_unk0x04 == 1) {
// LINE: LEGO1 0x100721a0
for (Act3List::iterator it2 = begin()++; it2 != it; it2 = erase(it2)) {
for (Act3List::iterator it2 = begin(); it2 != it; it2 = erase(it2)) {
// LINE: LEGO1 0x10072191
if ((*it2).m_hasStarted) {
// LINE: LEGO1 0x10072202