Skip to content

Commit

Permalink
microVU: fix block clearing regression
Browse files Browse the repository at this point in the history
  • Loading branch information
F0bes committed Sep 16, 2024
1 parent 4c267c4 commit c82671f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pcsx2/x86/microVU_Compile.inl
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,8 @@ void mVUsetupRange(microVU& mVU, s32 pc, bool isStartPC)
{
if (((it->start >= rStart) && (it->start <= rEnd)) || ((it->end >= rStart) && (it->end <= rEnd))) // Starts after this prog but starts before the end of current prog
{
rStart = std::min(it->start, rStart); // Choose the earlier start
rEnd = std::max(it->end, rEnd);
mVUrange.start = rStart = std::min(it->start, rStart); // Choose the earlier start
mVUrange.end = rEnd = std::max(it->end, rEnd);
it = ranges->erase(it);
}
else
Expand Down

0 comments on commit c82671f

Please sign in to comment.