This commit is contained in:
Elad 2025-12-15 14:28:32 +01:00 committed by GitHub
commit a8ab400546
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -3931,6 +3931,17 @@ spu_program spu_recompiler_base::analyse(const be_t<u32>* ls, u32 entry_point, s
continue;
}
for (auto it2 = it->second.begin(); it2 != it->second.end();)
{
if (*it2 < lsa || *it2 >= limit)
{
it2 = it->second.erase(it2);
continue;
}
it2++;
}
it++;
}