SPU Analyzer: Fix missing jump table entries in Mega mode

This commit is contained in:
Elad 2025-12-15 09:03:42 +02:00
parent c3db85c68e
commit 3f421c95c2

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++;
}