mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-19 19:15:26 +00:00
SPU Analyzer Hotfix
This commit is contained in:
parent
66eae05e75
commit
cf65571be7
1 changed files with 2 additions and 2 deletions
|
@ -6160,7 +6160,7 @@ spu_program spu_recompiler_base::analyse(const be_t<u32>* ls, u32 entry_point, s
|
|||
if (it == atomic16_all.end())
|
||||
{
|
||||
// Fresh new pattern detected in a single code path
|
||||
atomic16_all.emplace(pos, atomic16);
|
||||
atomic16_all.emplace(pos, *atomic16);
|
||||
}
|
||||
else if (it->second.active)
|
||||
{
|
||||
|
@ -6271,7 +6271,7 @@ spu_program spu_recompiler_base::analyse(const be_t<u32>* ls, u32 entry_point, s
|
|||
|
||||
if (it == rchcnt_loop_all.end())
|
||||
{
|
||||
rchcnt_loop_all.emplace(pos, rchcnt_loop);
|
||||
rchcnt_loop_all.emplace(pos, *rchcnt_loop);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue