mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-16 21:11:15 +00:00
47 % with random changes
This commit is contained in:
parent
a3b810452a
commit
8f37395ae8
@ -217,16 +217,16 @@ void Act3List::FUN_100720d0(MxU32 p_objectId)
|
|||||||
|
|
||||||
// TODO: Something is wrong about these first two lines
|
// TODO: Something is wrong about these first two lines
|
||||||
// LINE: LEGO1 0x1007215d
|
// 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
|
// // LINE: LEGO1 0x100721d4 Not pinnable, appears multiple times
|
||||||
for (Act3List::iterator it = its; it != end(); it++) {
|
for (; it != end(); it++) {
|
||||||
// LINE: LEGO1 0x1007217c
|
// LINE: LEGO1 0x1007217c
|
||||||
if ((*it).m_unk0x04 == 1) {
|
if ((*it).m_unk0x04 == 1) {
|
||||||
// LINE: LEGO1 0x100721a0
|
// 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
|
// LINE: LEGO1 0x10072191
|
||||||
if ((*it2).m_hasStarted) {
|
if ((*it2).m_hasStarted) {
|
||||||
// LINE: LEGO1 0x10072202
|
// LINE: LEGO1 0x10072202
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user