mirror of https://github.com/RPCS3/rpcs3
SPU Analyzer: Fix missing jump table entries in Mega mode
This commit is contained in:
parent
4c7d19fc69
commit
e0cdafddb5
|
|
@ -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