mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-12-16 04:09:07 +00:00
Merge 3f421c95c2 into cf87f24587
This commit is contained in:
commit
a8ab400546
@ -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++;
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user